-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 835 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 835 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
33
{
"name": "flow-ts",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "shx rm -rf dist",
"build": "npm run clean && rollup -c"
},
"author": "",
"license": "ISC",
"devDependencies": {
"handlebars": "^4.1.2",
"rollup": "^1.2.1",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-typescript2": "^0.19.2",
"rxjs": "^6.4.0",
"shx": "^0.3.2",
"svg-path-generator": "^1.1.0",
"typescript": "^3.3.3"
},
"dependencies": {}
}