-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 867 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 867 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
33
34
35
36
37
{
"name": "chipjs",
"version": "0.0.1",
"description": "Chip-8 Emulator in Javascript.",
"main": "index.js",
"scripts": {
"test": "mocha 'src/modules/**/*.{test,unit}.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/concreted/chipjs.git"
},
"keywords": [
"emulator",
"chip-8"
],
"author": "concreted",
"license": "MIT",
"bugs": {
"url": "https://github.com/concreted/chipjs/issues"
},
"homepage": "https://github.com/concreted/chipjs",
"devDependencies": {
"browserify": "^11.0.1",
"chai": "^3.2.0",
"gulp": "^3.9.0",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"mocha": "^2.2.5",
"proxyquire": "^1.6.0",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}