-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.21 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
{
"name": "huemanities",
"version": "1.0.0",
"description": "art things on canvases",
"main": "huemanities.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile-bct": "browserify BasicColorTerminal.js -o bct-bundle.js -t [ babelify --presets [ es2015 ] ] -t uglifyify",
"compile-bct-hsl": "browserify BasicColorTerminalHsl.js -o bcthsl-bundle.js -t [ babelify --presets [ es2015 ] ] -t uglifyify",
"compile-bct-lab": "browserify BasicColorTerminalLab.js -o bctlab-bundle.js -t [ babelify --presets [ es2015 ] ] -t uglifyify",
"compile-glitchrothko": "browserify GlitchRothko.js -o glitchrothko-bundle.js -t [ babelify --presets [ es2015 ] ] -t uglifyify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jennazee/huemanities.git"
},
"author": "jenna zeigen",
"license": "ISC",
"bugs": {
"url": "https://github.com/jennazee/huemanities/issues"
},
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"uglifyify": "^3.0.4"
},
"browserify": {
"transform": [
"babelify",
"uglifyify"
]
},
"homepage": "https://github.com/jennazee/huemanities#readme",
"dependencies": {}
}