-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.1 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
{
"name": "parser-6502",
"version": "1.0.3",
"description": "Parser for 6502 assembler.",
"main": "index.js",
"dependencies": {
"mona": "^0.9.1"
},
"devDependencies": {
"standard": "^11.0.0",
"standard-version": "^5.0.0",
"tap": "^14.2.3",
"weallbehave": "^1.2.0",
"weallcontribute": "^1.0.8"
},
"scripts": {
"release": "npm test && standard-version && git push origin master && npm publish",
"test": "tap test/*.js --100 && standard",
"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": "git+https://github.com/emkay/parser-6502.git"
},
"keywords": [
"parser",
"6502",
"nesly",
"nes",
"assembler"
],
"author": "Michael Matuzak",
"license": "MIT",
"bugs": {
"url": "https://github.com/emkay/parser-6502/issues"
},
"homepage": "https://github.com/emkay/parser-6502#readme"
}