-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.33 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "nestled",
"version": "1.6.0",
"description": "Javascript NES emulator",
"type": "module",
"main": "./dist/nestled.umd.js",
"module": "./dist/nestled.esm.js",
"types": "./types/index.d.ts",
"files": [
"dist",
"types",
"src"
],
"scripts": {
"clean": "rm -rf dist/* && touch dist/.keep",
"build": "rollup -c",
"serve": "http-server -c-1",
"test": "mocha \"test/**/*_test.js\" || true",
"debug": "mocha debug \"test/**/*_test.js\" || true",
"prepare": "npm run clean && npm run build",
"prepublishOnly": "echo \"Not meant to be published as package...\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jtduchesne/Nestled.git"
},
"keywords": [
"Javascript",
"ES6",
"NES",
"Nintendo",
"8bit",
"8-bit",
"emulator"
],
"author": "jtduchesne",
"license": "ISC",
"bugs": {
"url": "https://github.com/jtduchesne/Nestled/issues"
},
"homepage": "https://github.com/jtduchesne/Nestled#readme",
"dependencies": {},
"devDependencies": {
"bdd-lazy-var": "^2.6.1",
"chai": "^4.3.7",
"eslint": "^8.37.0",
"http-server": "^14.1.1",
"mocha": "^10.2.0",
"rollup": "^3.20.2",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^15.0.3",
"sinon-chai": "^3.7.0",
"typescript": "^4.9.5"
}
}