-
Notifications
You must be signed in to change notification settings - Fork 830
/
package.json
32 lines (32 loc) · 901 Bytes
/
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
{
"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"
}
}