-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.76 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "fragworks.io",
"version": "0.0.0",
"description": "Fragworks website",
"main": "dist/main.js",
"scripts": {
"build": "npm run clean && NODE_ENV=production webpack -p",
"build:dev": "webpack",
"clean": "rm -rf dist",
"lint": "tslint -e **/node_modules/** -e **/dist/** -t codeFrame **/*.ts ",
"lint:old": "tslint -t codeFrame src/**/*.ts",
"start": "webpack-dev-server",
"test": "jest",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fragworks/fragworks.io.git"
},
"keywords": [
"frag",
"fragworks",
"gamedev",
"nim"
],
"author": "Fragworks (http://fragworks.io)",
"contributors": [
"Ross Hadden <[email protected]> (https://github.com/rosshadden)",
"Zachary Carter <[email protected]> (https://github.com/zacharycarter)"
],
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"bugs": {
"url": "https://github.com/fragworks/fragworks.io/issues"
},
"homepage": "https://github.com/fragworks/fragworks.io#readme",
"config": {
"devPort": 8080
},
"jest": {
"globals": {
"__TS_CONFIG__": {
"module": "commonjs"
}
},
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"modulePathIgnorePatterns": [
"/^((?!src).)/"
],
"testResultsProcessor": "<rootDir>/node_modules/ts-jest/coverageprocessor.js",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
}
},
"devDependencies": {
"@types/jest": "^19.2.2",
"@types/node": "^7.0.12",
"@types/page": "^1.5.31",
"@types/webpack": "^2.2.13",
"awesome-typescript-loader": "^3.1.2",
"babel-core": "^6.24.0",
"babel-preset-env": "^1.2.2",
"colors": "^1.1.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.0",
"html-webpack-plugin": "^2.28.0",
"jest": "^19.0.2",
"lodash": "^4.17.4",
"node-sass": "^4.5.2",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"ts-jest": "^19.0.6",
"ts-node": "^3.0.2",
"tslint": "^5.0.0",
"tslint-config-standard": "^4.0.0",
"typedoc": "^0.5.9",
"typedoc-webpack-plugin": "^1.1.3",
"typescript": "^2.2.2",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"bootstrap": "^3.3.7",
"lodash": "^4.17.4",
"page": "^1.7.1",
"umbrellajs": "^2.6.7"
}
}