-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.19 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
{
"name": "rimworld-save-editor",
"version": "1.3.3",
"description": "RimWorld save editor",
"repository": {
"type": "git",
"url": "git://github.com/EnzoMartin/RimWorld-Save-Editor.git"
},
"license": "MIT",
"author": "Enzo Martin <enzo.r.martin@gmail.com>",
"contributors": [
"Enzo Martin <enzo.r.martin@gmail.com>"
],
"bugs": {
"url": "https://github.com/EnzoMartin/RimWorld-Save-Editor/issues"
},
"os": [
"darwin",
"win32",
"linux"
],
"engines": {
"node": ">=6",
"npm": ">=3"
},
"supportedVersions": [
"~0.15",
"~0.14"
],
"main": "app.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "istanbul cover node_modules/mocha/bin/_mocha test/**/*.js -- --full-trace",
"test:watch": "node_modules/mocha/bin/_mocha --watch --full-trace",
"dev": "node app.js | bunyan -o short",
"start": "node app.js"
},
"dependencies": {
"bunyan": "^1.8.1",
"semver": "^5.3.0",
"xml2js": "^0.4.16"
},
"devDependencies": {
"enzo-codestyle": "^2.0.0",
"eslint": "^3.2.2",
"expect": "^1.20.2",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"proxyquire": "^1.7.10"
}
}