-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1009 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
{
"name": "nanotunes",
"version": "0.4.1",
"description": "A small music format and an accompanying implementation using OscillatorNode",
"main": "dist/nanotunes.js",
"scripts": {
"test": "eslint src lib && mocha",
"build": "./tasks/build.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamesseanwright/nanotunes.git"
},
"keywords": [
"nanotunes",
"music",
"synthesis",
"oscillator",
"oscillatornode",
"chiptune",
"js13kgames"
],
"author": "James Wright <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jamesseanwright/nanotunes/issues"
},
"homepage": "https://github.com/jamesseanwright/nanotunes#readme",
"devDependencies": {
"babel-cli": "6.11.4",
"babel-plugin-transform-es2015-arrow-functions": "6.8.0",
"babel-plugin-transform-es2015-block-scoping": "6.10.1",
"chai": "3.5.0",
"eslint": "3.19.0",
"mocha": "3.1.2",
"sinon": "1.17.6"
}
}