-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.44 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
55
56
57
58
59
60
{
"name": "@mattapperson/slapshot",
"version": "2.1.0",
"main": "lib/index.js",
"description": "Mock method calls with snapshots, run your intigation tests online or offline!",
"license": "MIT",
"scripts": {
"prepare": "npm run build",
"build": "tsc -p tsconfig.build.json",
"test": "jest",
"release": "yarn test && release-it"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"prettier": {
"tabWidth": 4
},
"release-it": {
"git": {
"requireCleanWorkingDir": false,
"tagName": "v${version}"
},
"github": {
"release": true
}
},
"jest": {
"preset": "ts-jest",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"rootDir": "./src"
},
"files": [
"lib"
],
"devDependencies": {
"@types/jest": "25.1.4",
"@types/node": "15.12.2",
"jest": "24.8.0",
"release-it": "12.3.2",
"ts-jest": "24.0.2",
"tslib": "1.10.0",
"typescript": "3.8.3"
},
"dependencies": {
"utils-error-reviver": "1.0.0",
"utils-error-to-json": "1.0.0"
}
}