-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.47 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
{
"name": "@gamesaucer/customiz3-cli",
"version": "1.1.0",
"description": "Zelda 3 ROM Customizer Command Line Interface",
"main": "./lib/customiz3.js",
"scripts": {
"start": "node ./lib/customiz3.js",
"lint": "standard",
"integration": "jest int --passWithNoTests",
"unit": "jest unit --passWithNoTests --coverage",
"test": "npm run lint && npm run unit && npm run integration",
"compile": "babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gamesaucer/CustomiZ3-CLI.git"
},
"author": "Gamesaucer <[email protected]> (https://github.com/gamesaucer)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gamesaucer/CustomiZ3-CLI/issues"
},
"homepage": "https://github.com/gamesaucer/CustomiZ3-CLI#readme",
"dependencies": {
"@gamesaucer/customiz3-core": "^1.1.0",
"chalk": "^3.0.0",
"yargs": "^15.0.2"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"coveralls": "^3.0.9",
"jest": "^24.9.0",
"shx": "^0.3.2",
"standard": "^14.3.1"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": []
},
"bin": {
"customiz3": "./lib/customiz3.js"
},
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"/lib"
]
}