-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 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
{
"name": "vanillagl",
"version": "1.0.0",
"description": "Little 3D framework",
"main": "app/index.js",
"scripts": {
"start": "npm run dev",
"dev": "budo ./app/index.js:build/main.js --dir ./public --live --open -- -t babelify -t glslify",
"build": "browserify -t babelify -g glslify app/index.js -o public/build/main.js",
"example": "node example.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:JordanMachado/raymarching-starter-kit.git"
},
"author": "Jordan Machado",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^7.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"budo": "^6.0.4",
"eslint": "^3.10.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.2.0",
"glslify": "^2.3.1",
"minimist": "^1.2.0",
"stripify": "^3.0.0",
"uglifyjs": "^2.4.10"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-es2015-modules-commonjs"
]
},
"dependencies": {
"events": "^1.1.1",
"gl-matrix": "^2.3.2",
"hex-rgb": "^1.0.0",
"mini-listener": "^1.0.4",
"raf": "^3.1.0",
"ua-device-type": "0.0.4"
}
}