-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1000 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
36
37
38
39
40
41
42
{
"name": "optic-reverb",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "browserify index.js -o dist/index.js",
"watch": "budo index.js:dist/index.js --open --live --cors --ssl",
"build-globals": "browserify globals.js -o dist/globals.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/positlabs/optic-reverb.git"
},
"author": "Josh Beckwith <josh@positlabs.com> (https://github.com/positlabs)",
"license": "ISC",
"bugs": {
"url": "https://github.com/positlabs/optic-reverb/issues"
},
"homepage": "https://github.com/positlabs/optic-reverb#readme",
"dependencies": {
"jquery": "^3.1.1",
"three": "^0.84.0",
"x-tag": "^1.5.11"
},
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"babelify": "^7.3.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
}
}