-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 943 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
{
"name": "pacman",
"version": "1.0.0",
"main": "src/js/index.js",
"license": "MIT",
"scripts": {
"start": "yarn css && watchify src/js/index.js -t babelify -v -o 'indexhtmlify --style src/css/style.css --title pacman > index.html'",
"sync": "browser-sync start --proxy 'localhost:8080' --files 'src'",
"test": "eslint src/js/ && eslint ./__test__/ && jest",
"build": "browserify src/js/index.js -t babelify | indexhtmlify --style src/css/style.css > index.html"
},
"dependencies": {
"d3": "^4.9.1",
"svg2png": "^4.1.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"eslint": "^3.19.0",
"indexhtmlify": "^1.3.1",
"jest-cli": "^20.0.4",
"jsdom": "^11.1.0",
"watchify": "^3.9.0"
}
}