-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.96 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "web-music-hackathon-04",
"description": "project for web music hackathon 04",
"version": "2015.07.26",
"author": "mohayonao <mohayonao@gmail.com>",
"bugs": {
"url": "https://github.com/mohayonao/web-music-hackathon-04/issues"
},
"dependencies": {
"@mohayonao/dispatcher": "^0.3.1",
"@mohayonao/envelope": "^0.1.4",
"@mohayonao/event-emitter": "^1.0.1",
"@mohayonao/fm-synth": "^0.1.3",
"@mohayonao/operator": "^0.1.4",
"@mohayonao/power-audio-node": "^0.1.1",
"@mohayonao/remote-fluxx": "^0.1.3",
"@mohayonao/wave-tables": "^0.1.0",
"colors": "^1.1.2",
"dateformat": "^1.0.11",
"express": "^4.13.1",
"osc-msg": "^0.2.2",
"socket.io": "^1.3.6",
"worker-timer": "^0.1.1",
"xtend": "^4.0.0"
},
"devDependencies": {
"babel": "^5.8.3",
"babel-eslint": "^3.1.26",
"babelify": "^6.1.3",
"browserify": "^11.0.0",
"eslint": "^0.24.1",
"eslint-plugin-react": "^3.0.0",
"espower-babel": "^3.2.0",
"isparta": "^3.0.3",
"mocha": "^2.2.5",
"power-assert": "^0.11.0",
"sinon": "^1.15.4",
"watchify": "^3.3.0"
},
"homepage": "https://github.com/mohayonao/web-music-hackathon-04/",
"keywords": [],
"license": "MIT",
"optionalDependencies": {
"@mohayonao/launch-control": "^0.4.3",
"@mohayonao/midi-keyboard": "^0.2.1"
},
"private": true,
"repository": {
"type": "git",
"url": "http://github.com/mohayonao/web-music-hackathon-04.git"
},
"scripts": {
"build": "browserify src/client --transform babelify --standalone Hackathon --outfile public/index.js",
"cover": "babel-node $(npm bin)/isparta cover --report text --report html --report lcov _mocha",
"lint": "eslint src test",
"start": "babel-node src/server",
"test": "mocha --compilers js:espower-babel/guess",
"travis": "npm run lint && npm run test",
"watch": "watchify src/client --verbose --transform babelify --standalone Hackathon --outfile public/index.js"
}
}