This repository was archived by the owner on Oct 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.88 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": "dota2-manta-config-engine"
, "version": "1.9.1"
, "description": "Dota 2 configuration builder. Compiles JSON to autoexec."
, "main": "source/index.js"
, "repository":
{ "type": "git"
, "url" : "git+https://github.com/dodekeract/manta-config-engine.git"
},"keywords":
[ "dota2"
, "dota-2"
, "dota"
, "2"
, "manta"
, "config-engine"
, "autoexec"
, "build"
],"bin":
{ "manta-config-engine": "source/cli.js"
},"author": "Florian Wendelborn"
, "license": "MIT"
, "bugs": {
"url": "https://github.com/dodekeract/manta-config-engine/issues"
},"homepage": "https://github.com/dodekeract/manta-config-engine#readme"
, "dependencies":
{ "codements": "0.0.7"
, "minimist" : "^1.2.0"
, "verjson" : "0.0.6"
},"scripts":
{ "postpublish": "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag $PACKAGE_VERSION && git push --tags"
, "debug" : "node source/cli.js presets/debug.json"
, "dodekeract" : "node source/cli.js presets/dodekeract.json"
, "watch" : "nodemon -e js,json source/cli.js presets/dodekeract.json"
, "watch-debug": "nodemon -e js,json source/cli.js presets/debug.json"
, "test-update": "node -e \"var manta = require('./source');var preset = require('./presets/default.json');manta.update(preset);console.log(JSON.stringify(preset, null, '\t'));\""
},"remarkConfig":
{ "plugins":
{ "lint":
{ "list-item-indent" : "space"
, "no-tabs" : false
, "list-item-spacing" : false
, "no-missing-blank-lines": false
, "maximum-line-length" : 400
}
}
},"jscsConfig":
{ "validateIndentation" : "\t"
, "requirePaddingNewLinesAfterBlocks" : false
, "requireTrailingComma" : false
, "requireSpacesInsideObjectBrackets" : false
, "validateQuoteMarks" : false
, "disallowSpacesInFunctionDeclaration": false
}}