-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "woscope",
"version": "0.2.2",
"description": "oscilloscope emulator",
"homepage": "https://m1el.github.io/woscope/",
"license": "MIT",
"main": "index.js",
"keywords": [
"oscilloscope",
"webgl"
],
"author": "m1el",
"contributors": [
"cvn"
],
"repository": {
"type": "git",
"url": "git+https://github.com/m1el/woscope.git"
},
"bugs": {
"url": "https://github.com/m1el/woscope/issues"
},
"scripts": {
"demo": "budo demo/:dist/demo.js --live --open",
"build": "jshint *.js demo/*.js && browserify demo/ > dist/demo.js && browserify index.js --standalone woscope -p [browserify-banner --file banner.txt] > dist/woscope.js"
},
"browserify": {
"transform": [
"glslify",
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"devDependencies": {
"babel-preset-es2015": "^6.1.2",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"browserify-banner": "^1.0.3",
"budo": "^9.4.5",
"glslify": "^2.3.1",
"jshint": "^2.8.0"
}
}