-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1015 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
43
44
45
46
47
48
{
"name": "poketype",
"private": false,
"version": "0.0.2",
"description": "Pokémon type list and effectiveness calculation",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "tslint --project .",
"build": "tsc",
"prepare": "npm run build",
"test": "npm run build && jest"
},
"keywords": [
"pokemon"
],
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/test.*"
]
},
"author": "hakobe <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.1.0",
"jest": "^23.1.0",
"npm-run-all": "^4.1.2",
"prettier": "^1.9.2",
"ts-jest": "^22.4.6",
"ts-node": "^6.1.1",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.9.2"
}
}