-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
62 lines (62 loc) · 1.87 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "promisees",
"version": "1.0.0",
"description": "Promise visualization playground for the adventurous",
"scripts": {
"build": "cp node_modules/babel-core/browser.js dist/babel.js ; npm run scripts && npm run styles",
"scripts": "browserify -dvo dist/demo.js demo.js && uglifyjs -m -c -o dist/demo.min.js dist/demo.js",
"start": "watchify -dvo dist/demo.min.js demo.js & stylus --include-css --include . -w demo.styl --import node_modules/nib -o dist & static-server . --port ${PORT:='3000'}",
"styles": "stylus --include-css --include . demo.styl --import node_modules/nib -o dist && cleancss dist/demo.css -o dist/demo.css",
"deploy": "npm run build ; git add . ; git commit -am 'autogenerated build commit' ; git push"
},
"main": "dist/promisees.js",
"browserify": {
"transform": [
[
"babelify",
{
"stage": [
0
]
}
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/bevacqua/promisees.git"
},
"author": "Nicolas Bevacqua <[email protected]> (http://bevacqua.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bevacqua/promisees/issues"
},
"homepage": "https://github.com/bevacqua/promisees",
"dependencies": {
"assignment": "2.2.0",
"babel-core": "5.8.25",
"brace": "0.5.1",
"contra": "1.9.1",
"d3": "3.5.6",
"dominus": "5.0.6",
"es6-promise": "3.0.2",
"hash-sum": "1.0.2",
"lodash": "3.10.1",
"omnibox": "1.0.0",
"raf": "3.1.0",
"vectorcam": "1.0.0",
"whatwg-fetch": "0.9.0"
},
"devDependencies": {
"babelify": "6.3.0",
"browserify": "11.1.0",
"clean-css": "3.4.3",
"nib": "1.1.0",
"normalize.css": "3.0.3",
"regenerator-runtime": "0.10.1",
"static-server": "2.0.0",
"stylus": "0.52.4",
"uglify-js": "2.4.24",
"watchify": "3.4.0"
}
}