-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 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
{
"name": "@optio-labs/mock-api",
"version": "0.0.7",
"description": "Creates a mock REST API from JSON files.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"start": "node ./build/cli.js",
"s": "npm start",
"start:dev": "nodemon",
"sd": "npm run start:dev",
"c": "npm run clean",
"clean": "rm -rf build/*",
"b": "npm run build",
"build": "tsc --incremental",
"bw": "npm run build:watch",
"build:watch": "tsc --incremental --watch",
"prepublishOnly": "npm test && npm run clean && tsc",
"t": "npm run test",
"test": "jest",
"tw": "npm run test:watch",
"test:watch": "jest --watch"
},
"bin": {
"mock-api": "./bin/cli"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/ashleydavis/mock-api.git"
},
"keywords": [],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/ashleydavis/mock-api/issues"
},
"homepage": "https://github.com/ashleydavis/mock-api#readme",
"dependencies": {
"express": "^4.17.3",
"fs-extra": "^10.0.1",
"minimist": "^1.2.5"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/minimist": "^1.2.2",
"@types/node": "^16.11.7",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}