-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.01 KB
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": "sbagen",
"version": "0.0.4",
"description": "brainwave synchronization library patterned after sbagen",
"author": "David Konsumer <konsumer@jetboystudio.com>",
"license": "GPL2",
"keywords": [
"brainwave",
"idoser",
"sbagen",
"binaural"
],
"repository": {
"type": "git",
"url": "http://github.com/brainbang/sbagen.js.git"
},
"bugs": {
"url": "http://github.com/brainbang/sbagen.js/issues",
"email": "konsumer@jetboystudio.com"
},
"main": "index.js",
"scripts": {
"start": "browserify . --standalone sbagen -o dist/sbagen.js && uglifyjs dist/sbagen.js -o dist/sbagen.min.js",
"test": "mocha -s 5000 -t 5000",
"watch": "mocha -w -s 1000 -t 6000"
},
"bin": {
"sbagenjs": "cli.js"
},
"devDependencies": {
"browserify": "^8.0.3",
"chai": "^1.10.0",
"chai-things": "^0.2.0",
"mocha": "^2.1.0",
"sinon": "^1.12.2",
"uglify-js": "^2.4.16"
},
"dependencies": {
"commander": "^2.6.0",
"emitonoff": "0.0.2"
}
}