-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.13 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
46
47
48
49
50
51
{
"name": "tsnes",
"version": "0.1.0",
"description": "A clone of JSNES in Typescript",
"main": "dist/nes.js",
"types": "dist/nes.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/nfam/tsnes.git"
},
"keywords": [
"NES",
"Nintendo",
"JSNES",
"emulator",
"game"
],
"author": "Ninh Pham",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/nfam/tsnes/issues"
},
"homepage": "https://github.com/nfam/tsnes#readme",
"files": [
"LICENSE",
"README.md",
"dist/nes.js",
"dist/nes.d.ts",
"dist/nes.min.js"
],
"dependencies": {},
"scripts": {
"tslint": "node_modules/.bin/tslint -c tslint.json --project .",
"build": "node_modules/.bin/gulp"
},
"devDependencies": {
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-add-src": "^0.2.0",
"gulp-change": "^1.0.0",
"gulp-cli": "^2.0.1",
"gulp-concat": "^2.6.1",
"gulp-replace": "^0.5.4",
"gulp-strip-comments": "^2.4.5",
"gulp-typescript": "^3.1.6",
"gulp-uglify": "^2.1.2",
"tslint": "^5.9.1",
"tslint-eslint-rules": "^5.1.0",
"typescript": "^2.6.2"
}
}