-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
69 lines (69 loc) · 1.84 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "cfxnes-lib",
"version": "0.7.0",
"description": "JavaScript library for NES emulation in web browser",
"license": "MIT",
"private": true,
"keywords": [
"emulator",
"nes"
],
"author": "Jan Pikl <[email protected]>",
"homepage": "https://github.com/jpikl/cfxnes",
"bugs": {
"url": "https://github.com/jpikl/cfxnes/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jpikl/cfxnes"
},
"files": [
"dist/",
"examples/",
"API.md",
"CHANGELOG.md",
"README.md",
"polyfills.js"
],
"main": "dist/cfxnes.js",
"scripts": {
"dev": "watch 'npm run build' src ../core/src",
"dev:debug": "watch 'npm run build:debug' src ../core/src",
"build": "node build.js",
"build:debug": "node build.js --debug",
"lint": "eslint src test '*.js'",
"test": "karma start",
"test:src": "karma start --target=src",
"test:lib": "karma start --target=lib",
"test:lib:debug": "karma start --target=lib:debug",
"clean": "rimraf dist",
"pretest": "npm run build",
"pretest:lib": "npm run build",
"pretest:lib:debug": "npm run build:debug"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"core-js": "^2.5.6",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.18.2",
"google-closure-compiler": "^20191111.0.0",
"ip": "^1.1.5",
"jszip": "^3.1.5",
"karma": "^2.0.2",
"karma-browserify": "^5.2.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-webdriver-launcher": "^1.0.5",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"watch": "^1.0.2"
}
}