-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
88 lines (88 loc) · 2.17 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "ternion",
"version": "5.0.0",
"description": "Ternion, a simple starter kit to prototype quickly your ideas with Three.js",
"main": "src/index.js",
"private": true,
"scripts": {
"start": "concurrently -k -r \"node server.js\" \"npm run css:dev\"",
"build": "NODE_ENV='production' node build.js | uglifyjs -c > public/build/bundle.js",
"css:dev": "stylus -u autoprefixer-stylus -w ./src/stylesheets/main.styl -o public/build --sourcemap",
"css:prod": "stylus -u autoprefixer-stylus ./src/stylesheets/main.styl -o public/build --compress",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"budo",
"glsl",
"webgl",
"three.js",
"glslify",
"starter",
"boilerplate",
"prototyping"
],
"author": "Fabien Motte <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/FabienMotte/Ternion.git"
},
"bugs": {
"url": "https://github.com/FabienMotte/Ternion/issues"
},
"homepage": "https://github.com/FabienMotte/Ternion",
"dependencies": {
"color-shader-functions": "0.0.2",
"glslify-bare": "FabienMotte/glslify-bare",
"lodash.debounce": "^4.0.8",
"quark-raf": "^1.0.4",
"quark-signal": "^1.1.2",
"raf": "^3.4.0",
"three": "^0.91.0",
"three-orbitcontrols": "^2.0.0"
},
"devDependencies": {
"autoprefixer-stylus": "^0.14.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^16.1.1",
"budo": "^11.2.0",
"concurrently": "^3.5.1",
"dat-gui": "^0.5.0",
"glslify": "^6.1.1",
"stylus": "^0.54.5",
"uglify-js": "^3.3.15"
},
"browserify": {
"transform": [
"babelify",
"glslify-bare"
]
},
"standard": {
"globals": [
"THREE",
"TweenMax",
"TimelineMax",
"Back",
"Bounce",
"Circ",
"Cubic",
"Ease",
"Elastic",
"Expo",
"Linear",
"Power0",
"Power1",
"Power2",
"Power3",
"Power4",
"Quad",
"RoughEase",
"Sine",
"SplitText"
]
}
}