-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
{
"name": "typepool",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"build:watch": "tsc --project tsconfig.json --watch",
"clean": "rm -Rf dist",
"prepublish": "npm run clean && npm run build",
"test": "jest --no-cache",
"release": "npm version patch && git push --tags"
},
"jest": {
"verbose": true,
"moduleDirectories": [
"./node_modules",
"./src"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "src\\/test.*\\.spec\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.136",
"@types/node": "12.6.8",
"babel-eslint": "^10.0.2",
"eslint": "^6.1.0",
"gulp": "^4.0.2",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"bluebird": "^3.5.5",
"typeguard": "^0.0.16"
},
"peerDependencies": {
"bluebird": "^3.5.5",
"typeguard": "^0.0.16"
},
"version": "1.0.9"
}