-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "@pokegame/battle-engine",
"version": "0.0.1",
"description": "Pokémon battle engine",
"main": "build/src/index.js",
"typings": "build/src/index.d.ts",
"engineStrict": true,
"engines": {
"node": ">= 6.9.0"
},
"devDependencies": {
"@types/jest": "^20.0.8",
"@types/node": "^6.0.88",
"jest": "~20.0.0",
"rimraf": "~2.6.1",
"tslint": "~5.4.3",
"tslint-eslint-rules": "^4.1.1",
"tslint-microsoft-contrib": "~5.0.1",
"tsutils": "~2.5.1",
"typescript": "~2.4.1"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"watch": "tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --type-check --project 'tsconfig.json'",
"pretest": "npm run lint",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch",
"prepublishOnly": "npm run test-only && npm run build"
},
"author": "Federkun <[email protected]>",
"license": "MIT",
"dependencies": {
"tslib": "~1.7.1"
}
}