meowio/jsnes/package.json
Jeremy Penner 8dc252d70f git subrepo clone https://github.com/bfirsh/jsnes.git
subrepo:
  subdir:   "jsnes"
  merged:   "d8021d0"
upstream:
  origin:   "https://github.com/bfirsh/jsnes.git"
  branch:   "master"
  commit:   "d8021d0"
git-subrepo:
  version:  "0.4.9"
  origin:   "???"
  commit:   "???"
2024-10-29 20:12:13 -04:00

33 lines
901 B
JSON

{
"name": "jsnes",
"version": "1.2.1",
"description": "A JavaScript NES emulator",
"homepage": "https://github.com/bfirsh/jsnes",
"author": "Ben Firshman <ben@firshman.co.uk> (https://fir.sh)",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git://github.com/bfirsh/jsnes.git"
},
"license": "Apache-2.0",
"scripts": {
"build": "webpack",
"test": "prettier-check src/**/*.js && mocha ./test/*.spec.js",
"test:watch": "mocha -w ./test/*.spec.js",
"prepublish": "npm run build",
"format": "prettier --write src/**/*.js"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-loader": "^2.0.0",
"mocha": "^9.1.1",
"prettier": "^2.0.5",
"prettier-check": "^2.0.0",
"sinon": "^9.0.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^3.9.1"
}
}