-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 886 Bytes
/
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": "function-rotator",
"version": "1.0.0",
"description": "A website that rotates functions around axes",
"main": "index.js",
"dependencies": {
"babel-plugin-import-to-require": "^1.0.0",
"expr-eval": "^2.0.1",
"gl-matrix": "^3.0.0",
"glslify": "^7.0.0",
"regl": "^1.3.11",
"regl-camera": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"budo": "^11.6.2",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2"
},
"scripts": {
"start": "budo index.js --open --live -- -t babelify",
"build": "browserify index.js -t babelify --outfile dist/index.js"
},
"browserify": {
"transform": [
"glslify"
]
},
"author": "Akash Munagala",
"license": "ISC"
}