-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 774 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 774 Bytes
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
{
"name": "matchboxchip8",
"version": "0.0.1",
"description": "JavaScript Chip-8 Interpreter",
"main": "webpack.config.js",
"scripts": {
"build": "webpack",
"lint": "jshint ./src/*",
"test": "mocha tests/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonathanlloyd/MatchboxChip8.git"
},
"author": "Jonathan Lloyd",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonathanlloyd/MatchboxChip8/issues"
},
"homepage": "https://github.com/jonathanlloyd/MatchboxChip8#readme",
"dependencies": {
"jbinary": "^2.1.3",
"loglevel": "^1.4.1"
},
"devDependencies": {
"jshint": "^2.9.5",
"mocha": "5.*.*",
"rewire": "4.*.*",
"webpack": "^4.16.1",
"webpack-cli": "3.*.*"
}
}