-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 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
37
38
39
40
41
42
43
44
45
{
"name": "nes-emulator",
"version": "1.0.11",
"description": "NES emulator",
"license": "GPL-3.0",
"main": "lib/nes.js",
"repository": {
"type": "git",
"url": "git+https://github.com/fredericcambon/nes.git"
},
"keywords": [
"nes",
"emulator",
"nintendo",
"emulation"
],
"scripts": {
"build": "webpack",
"watch": "webpack -d --watch",
"prettier": "prettier --write src/**/*.js",
"lint": "./node_modules/eslint/bin/eslint.js --fix src/",
"test": "jest"
},
"author": "Frédéric Cambon",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-jest": "^23.6.0",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.16.0",
"eslint": "^5.3.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^23.6.0",
"lodash": "^4.17.2",
"regenerator-runtime": "^0.12.1",
"webpack": "^1.14.0"
}
}