-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1016 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
43
44
45
{
"name": "drg2sba",
"version": "0.0.8",
"description": "Extract sbagen & meta-files from idoser DRG files in javascript",
"author": "David Konsumer <[email protected]>",
"license": "GPL2",
"main": "index.js",
"keywords": [
"brainwave",
"idoser",
"sbagen",
"binaural"
],
"repository": {
"type": "git",
"url": "http://github.com/brainbang/drg2sba.git"
},
"bugs": {
"url": "http://github.com/brainbang/drg2sba/issues",
"email": "[email protected]"
},
"scripts": {
"start": "browserify . --standalone drg2sba -o dist/drg2sba.js && uglifyjs dist/drg2sba.js -o dist/drg2sba.min.js"
},
"bin": {
"drg2sba": "cli.js"
},
"devDependencies": {
"browserify": "^8.0.3",
"browserify-shim": "^3.8.2",
"uglify-js": "^2.4.16"
},
"dependencies": {
"atob": "^1.1.2",
"commander": "^2.6.0"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"atob": "global:atob"
}
}