parser-6502/package.json

36 lines
800 B
JSON
Raw Normal View History

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": {
"standard": "^8.1.0",
2016-10-13 03:00:02 +00:00
"standard-version": "^3.0.0",
2016-10-02 21:54:14 +00:00
"tap": "^7.1.2"
},
"scripts": {
"release": "npm test && standard-version && git push origin master && npm publish",
2016-10-02 21:54:14 +00:00
"test": "tap test/*.js --cov && standard"
},
"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"
}