-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.38 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
{
"name": "regl-smooth-life-demo",
"version": "1.0.0",
"description": "SmoothLife on the GPU, via regl",
"main": "index.js",
"author": {
"name": "Ricky Reusser",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/rreusser/regl-smooth-life-demo.git"
},
"scripts": {
"start": "budo-less www/index.js:bundle.js --less=www/style.less --open --dir www -- -t [ babelify --presets [ es2015 ] ] | garnish",
"test": "semistandard && mocha",
"build:clean": "rm -rf dist",
"build:js": "browserify www/index.js -t [ babelify --presets [ es2015 ] ] | uglifyjs -cm > dist/bundle.js",
"build:html": "cp www/index.html dist/index.html",
"build:css": "lessc www/style.less dist/style.css",
"build": "mkdir -p dist && npm run build:html && npm run build:js && npm run build:css",
"deploy": "gh-pages -d dist"
},
"keywords": [],
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.3.0",
"budo-less": "^1.0.1",
"chai": "^3.5.0",
"control-panel": "[email protected]:rreusser/control-panel.git#merge-it-all",
"garnish": "^5.2.0",
"mocha": "^2.4.5"
},
"dependencies": {
"query-string": "^4.2.2",
"regl": "^0.10.0",
"util-extend": "^1.0.3"
},
"semistandard": {
"globals": [
"describe",
"it",
"beforeEach"
]
}
}