-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "chain-of-positivity",
"version": "1.0.0",
"description": "A digital visualisation of physical positivity",
"main": "index.js",
"scripts": {
"start": "budo . -d --serve bundle.js --live",
"build": "browserify . -o bundle.js -g uglifyify",
"format": "snazzy --format || true",
"test": "snazzy --format && mocha test",
"dist": "mkdir -p dist && bash -c 'cp *.{js,html,css} dist'",
"push": "gh-pages -d dist",
"deploy": "npm run build && npm run dist && npm run push"
},
"browserify": {
"transform": []
},
"repository": {
"type": "git",
"url": "git+https://github.com/enspiral-craftworks/chain-of-positivity.git"
},
"author": "fractalcactus",
"license": "ISC",
"bugs": {
"url": "https://github.com/enspiral-craftworks/chain-of-positivity/issues"
},
"homepage": "https://github.com/enspiral-craftworks/chain-of-positivity#readme",
"dependencies": {
"mapbox": "^0.12.0"
},
"devDependencies": {
"browserify": "^10.0.0",
"budo": "^4.0.0",
"chai": "*",
"gh-pages": "^0.3.0",
"mocha": "*",
"smokestack": "^3.3.0",
"snazzy": "^2.0.1",
"uglifyify": "^3.0.1",
"watchify": "^3.1.0"
}
}