-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.78 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
{
"name": "csgo-ranking-graph",
"version": "1.0.0",
"description": "Ranking graph for CSGO teams.",
"main": "loader.js",
"dependencies": {},
"devDependencies": {
"better-console": "^0.2.4",
"jquery": "^3.1.1",
"jsdom": "^9.8.3",
"node-sass": "^4.3.0",
"sass-lint": "^1.10.2",
"source-map-loader": "^0.1.6",
"ts-loader": "^2.0.0",
"tslint": "^4.2.0",
"typescript": "^2.0.7",
"typings": "^1.5.0",
"webpack": "^2.2.0",
"@types/node": "^8.0.24"
},
"scripts": {
"install": "typings install",
"graph_lint": "tslint -c tslint.json --project graph/tsconfig.json -t stylish",
"graph_compile": "webpack",
"graph_build": "npm run graph_lint && npm run graph_compile",
"loader_lint": "tslint -c tslint.json --project loader/tsconfig.json -t stylish",
"loader_compile": "tsc -p loader/tsconfig.json",
"loader_build": "npm run loader_lint && npm run loader_compile",
"loader_all": "npm run loader_build && node loader/loader",
"css_ts_lint": "tslint -c tslint.json --project css/tsconfig.json -t stylish",
"css_ts_compile": "tsc -p css/tsconfig.json",
"css_ts_build": "npm run css_ts_lint && npm run css_ts_compile",
"css_lint": "sass-lint -c sass-lint.yml -v",
"css_compile": "node css/buildScss",
"css_build": "npm run css_lint && npm run css_compile",
"css_all": "npm run css_ts_build && npm run css_build",
"test": "npm run graph_build && npm run loader_build && npm run css_all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bencoveney/CsgoRankingsGraph.git"
},
"author": "Ben Coveney",
"license": "ISC",
"bugs": {
"url": "https://github.com/bencoveney/CsgoRankingsGraph/issues"
},
"homepage": "https://github.com/bencoveney/CsgoRankingsGraph#readme"
}