-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 982 Bytes
/
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
{
"name": "nickgarvey-screeps",
"version": "1.0.0",
"description": "AI for this game: http://docs.screeps.com",
"main": "main.js",
"scripts": {
"test": "jest",
"postinstall": "typings install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nickgarvey/screeps.git"
},
"author": "Nick Garvey",
"license": "MIT",
"bugs": {
"url": "https://github.com/nickgarvey/screeps/issues"
},
"homepage": "https://github.com/nickgarvey/screeps#readme",
"devDependencies": {
"del": "^3.0.0",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"jest": "^20.0.4",
"lodash": "^3.10.1",
"ts-jest": "^20.0.6",
"typescript": "^2.3.4",
"typings": "^2.1.1",
"uglify-js-es6": "^2.8.9"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/test/.*\\.(ts|tsx|js)$"
}
}