-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 959 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
{
"name": "instance-transfer",
"version": "0.0.3",
"dependencies": {},
"scripts": {
"build": "node_modules/.bin/webpack",
"prepare": "npm test && npm run build",
"test": "node_modules/.bin/jest",
"preversion": "npm publish",
"prepublish": "npm test",
"postpublish": "git push"
},
"main": "dist/instance-transfer.min.js",
"types": "src/index.ts",
"files": [
"dist",
"src"
],
"jest": {
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/test/*.+(ts|tsx|js)"
]
},
"devDependencies": {
"@types/jest": "^23.3.1",
"jest": "^23.5.0",
"ts-jest": "^23.1.3",
"ts-loader": "^4.5.0",
"typescript": "^3.0.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
}
}