-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 921 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 921 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
34
{
"name": "flowmaker",
"author": "warrenwyf",
"version": "0.1.0",
"description": "Make flow charts in browser",
"repository": {
"type": "git",
"url": "https://github.com/warrenwyf/flowmaker"
},
"license": "Apache-2.0",
"main": "dist/flowmaker.js",
"files": [
"src",
"dist/*.js"
],
"scripts": {
"build": "rollup -c",
"release": "rollup -c --environment BUILD:production",
"test": "mocha --recursive --require @babel/register"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-template-literals": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"mocha": "^5.2.0",
"rollup": "^1.0.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^3.0.0"
}
}