-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.57 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
{
"name": "chip3",
"version": "0.1.0",
"description": "An interactive simulator of a simple computer",
"homepage": "https://github.com/zenoamaro/chip3",
"license": "MIT",
"private": true,
"keywords": [
"simulator",
"emulator",
"chip",
"cpu",
"ram",
"learn",
"learning"
],
"author": "zenoamaro <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/zenoamaro/chip3.git"
},
"bugs": {
"url": "https://github.com/zenoamaro/chip3/issues",
"email": "zenoamaro <[email protected]>"
},
"main": "lib/index.js",
"scripts": {
"build": "make build",
"devel": "make devel",
"docs": "make docs",
"test": "make test",
"clean": "make clean"
},
"dependencies": {
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-hot-loader": "^3.0.0-beta.2",
"should": "^8.4.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.10",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.10.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^5.1.1",
"file-loader": "^0.8.5",
"jsdoc": "^3.4.0",
"jsdoc-babel": "^0.1.0",
"mocha": "^2.5.3",
"should": "^7.0.2",
"webpack": "^2.2.0-rc.3",
"webpack-dev-server": "^2.2.0-rc.0",
"webpack-shell-plugin": "^0.4.2"
},
"files": [
"lib",
"LICENSE",
"README.md"
]
}