-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.37 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.37 KB
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
61
62
63
64
65
66
67
68
{
"name": "10mock",
"version": "1.0.15",
"description": "Mid testing mock server for client-side testing.",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/10play/10mock"
},
"homepage": "https://github.com/10play/10mock",
"scripts": {
"test": "jest",
"build": "rm -rf build && tsc --project ./",
"start": "nodemon index.ts",
"startProxy": "PROXY_URL=http://localhost:5000 nodemon index.ts"
},
"files": [
"build"
],
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
},
"author": "10play",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.9",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.20",
"@types/supertest": "^2.0.10",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"keywords": [
"test",
"mock",
"api",
"react-native",
"rest",
"nock"
],
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"stdio": "^2.1.1"
},
"bin": {
"10mock": "build/cli.js"
}
}