forked from bfirsh/jsnes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 KB
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
{
"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",
"type": "module",
"scripts": {
"build": "webpack",
"typecheck": "tsc --noEmit",
"test": "npm run typecheck && 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": {
"@types/node": "^25.0.2",
"chai": "^6.2.2",
"eslint": "^9.15.0",
"eslint-config-prettier": "^10.1.8",
"eslint-webpack-plugin": "^5.0.2",
"mocha": "^11.7.1",
"prettier": "^3.6.2",
"sinon": "^21.0.0",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5.8.3",
"webpack": "^5.100.2",
"webpack-cli": "^6.0.1"
}
}