-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 877 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "paired-frame",
"version": "2.0.0",
"description": "Helper library for cross-frame communication",
"module": "dist/PairedFrame.ejs.js",
"main": "dist/PairedFrame.cjs.js",
"types": "dist/types/PairedFrame.d.ts",
"repository": "https://github.com/classy-org/paired-frame",
"author": "Tom Borger <tborger@classy.org>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"express": "^4.16.3",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-uglify": "^5.0.2",
"tsc-watch": "^1.0.31",
"typescript": "^3.2.2"
},
"files": [
"dist"
],
"scripts": {
"build": "sh/compile.sh",
"dev": "sh/watch.sh",
"build-demo": "rollup -c demo/rollup.config.js",
"demo": "node demo"
},
"dependencies": {}
}