-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 937 Bytes
/
package.json
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": "you-draw-it",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"b-clean-dist": "rm -rf dist && mkdir dist",
"b-rollup": "rollup -c",
"b-uglify": "uglifyjs dist/js/youdrawit.js -c -m -o dist/js/youdrawit.min.js",
"b-eslint": "eslint index.js src",
"b-tape": "node test/youdrawit-test.js | tap-spec",
"build": "npm run -s b-rollup & npm run -s b-eslint & npm run -s b-uglify"
},
"author": "Mihael Ankerst",
"license": "BSD-3-Clause",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.2.0",
"rollup": "^0.63.4",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-node-resolve": "^3.3.0",
"tap-spec": "^5.0.0",
"tape": "^4.9.1",
"uglify-js": "^3.4.2"
},
"dependencies": {
"d3": "^5.5.0"
}
}