-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 809 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 809 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
{
"name": "pipeviz",
"main": "src/app.js",
"version": "0.1.0",
"homepage": "https://github.com/sdboyer/pipeviz",
"authors": [
"Sam Boyer <tech@samboyer.org>",
"Théodore Biadala <theodore@biadala.net>"
],
"license": "MIT",
"private": true,
"dependencies": {
"d3": "~3.5.3",
"graphlib": "1.0.7",
"lodash": "^3.10.0",
"react": "~0.13.2"
},
"devDependencies": {
"browserify": "^11.0.1",
"exorcist": "^0.4.0",
"factor-bundle": "^2.5.0",
"uglifyjs": "^2.4.10"
},
"scripts": {
"build": "npm run build-dev",
"build-dev": "browserify src/page/*.js --debug -p [ factor-bundle -o 'exorcist public/assets/js/`basename $FILE`.map > public/assets/js/`basename $FILE`' ] | exorcist public/assets/js/bundle.js.map > public/assets/js/bundle.js"
}
}