-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
55 lines (55 loc) · 1.52 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": "generate-gb-op-codes",
"version": "1.0.0",
"description": "Generates a complete set of Game Boy op codes and their corresponding CPU instructions",
"scripts": {
"build": "webpack --config webpack.prod.js",
"build-dev": "webpack --config webpack.dev.js",
"lint": "eslint src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meganesu/generate-gb-op-codes.git"
},
"keywords": [
"gameboy",
"emulator",
"DMG-CPU",
"Sharp",
"LR35902"
],
"author": "Megan Sullivan",
"license": "ISC",
"bugs": {
"url": "https://github.com/meganesu/generate-gb-op-codes/issues"
},
"homepage": "https://github.com/meganesu/generate-gb-op-codes#readme",
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"babel-plugin-react-require": "^3.1.3",
"css-loader": "^3.6.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^3.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.5.4",
"style-loader": "^1.3.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0"
}
}