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 5
/
Copy pathpackage.json
65 lines (65 loc) · 2.71 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
63
64
65
{ "name" : "dota2-manta-config-engine-app"
, "version" : "1.10.0"
, "author" : "Florian Wendelborn"
, "description": "A web-application to generate autoexec configurations."
, "main" : "app.js"
, "bin":
{ "manta-config-engine-app": "./source/cli/server.js"
},"scripts":
{ "apply" : "gulp --gulpfile source/gulpfile.js"
, "build" : "gulp download --gulpfile source/gulpfile.js && gulp --gulpfile source/gulpfile.js"
, "postinstall": "gulp download --gulpfile source/gulpfile.js && gulp --gulpfile source/gulpfile.js"
, "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"
, "start" : "http-server build"
, "watch" : "nodemon --ignore build/ --ignore node_modules/ --ignore .git/ -e html,jpg,js,json,jsx,png,sass,scss,svg --exec \"gulp --gulpfile source/gulpfile.js\""
},"repository":
{ "type": "git"
, "url" : "git+https://github.com/dodekeract/manta-config-engine-app.git"
},"license": "MIT"
, "bugs":
{ "url": "https://github.com/dodekeract/manta-config-engine-app/issues"
},"homepage": "https://github.com/dodekeract/manta-config-engine-app#readme"
, "dependencies":
{ "dota2-manta-config-engine": "1.9.0"
, "flux" : "^2.1.1"
, "gulp-browserify" : "^0.5.1"
, "gulp-download" : "Metrime/gulp-download"
, "gulp-filelist" : "^0.4.0"
, "gulp-rename" : "^1.2.2"
, "gulp-sass" : "^2.2.0"
, "gulp" : "^3.9.0"
, "http-server" : "^0.9.0"
, "jszip" : "^3.0.0"
, "moment-timezone" : "^0.5.3"
, "object-assign" : "^4.0.1"
, "platform" : "^1.3.1"
, "react-markdown" : "^2.1.1"
, "react-tooltip" : "^1.0.6"
, "react" : "^15.0.1"
, "reactify" : "^1.1.1"
, "verjson" : "^0.0.6"
},"devDependencies":
{ "nodemon": "1.x"
},"remarkConfig":
{ "plugins":
{ "lint":
{ "list-item-indent": "space"
, "no-tabs": false
, "no-html": false
, "maximum-line-length": false
, "list-item-spacing": false
, "no-missing-blank-lines": false
}
}
},"jscsConfig":
{ "maximumLineLength" : 300
, "requireCommaBeforeLineBreak" : false
, "requirePaddingNewLinesAfterBlocks" : false
, "requireSpacesInsideObjectBrackets" : false
, "requireTrailingComma" : false
, "validateIndentation" : "\t"
, "validateQuoteMarks" : false
, "disallowSpacesInsideBrackets" : false
, "disallowSpacesInsideArrayBrackets" : false
, "disallowSpacesInFunctionDeclaration": false
}}