-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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
{
"name": "nesly-sound",
"version": "3.1.0",
"description": "Make music with your NES",
"main": "index.js",
"scripts": {
"build": "node examples/song.js && cd build && nesasm start.s && open start.nes",
"release": "npm test && standard-version && git push --follow-tags origin master; npm publish",
"test": "standard && istanbul cover --dir ${COVERAGE_DIR:-coverage} tape -- test/*.js",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
},
"repository": {
"type": "git",
"url": "https://github.com/emkay/nesly-sound.git"
},
"keywords": [
"NES",
"sound",
"8-bit",
"music"
],
"author": {
"name": "Michael Matuzak",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/emkay/nesly-sound/issues"
},
"homepage": "https://github.com/emkay/nesly-sound",
"dependencies": {
"cpr": "^3.0.0",
"mkdirp": "^0.5.0",
"octavian": "^2.0.5"
},
"devDependencies": {
"istanbul": "^0.4.5",
"standard": "^13.0.1",
"standard-version": "^6.0.1",
"tape": "^4.0.0",
"weallbehave": "^1.2.0",
"weallcontribute": "^1.0.8"
}
}