2016-10-02 21:54:14 +00:00
|
|
|
{
|
|
|
|
"name": "parser-6502",
|
2016-10-13 03:21:29 +00:00
|
|
|
"version": "1.0.2",
|
2016-10-02 21:54:14 +00:00
|
|
|
"description": "Parser for 6502 assembler.",
|
|
|
|
"main": "index.js",
|
|
|
|
"dependencies": {
|
|
|
|
"mona": "^0.9.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-02-19 02:13:11 +00:00
|
|
|
"standard": "^11.0.0",
|
2017-03-14 17:27:16 +00:00
|
|
|
"standard-version": "^4.0.0",
|
2017-11-26 00:40:48 +00:00
|
|
|
"tap": "^11.0.0",
|
2017-07-26 14:51:05 +00:00
|
|
|
"weallbehave": "^1.2.0",
|
|
|
|
"weallcontribute": "^1.0.8"
|
2016-10-02 21:54:14 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2016-10-13 03:20:54 +00:00
|
|
|
"release": "npm test && standard-version && git push origin master && npm publish",
|
2017-07-26 14:55:53 +00:00
|
|
|
"test": "tap test/*.js --100 && standard",
|
2017-07-26 14:51:05 +00:00
|
|
|
"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'"
|
2016-10-02 21:54:14 +00:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
}
|