-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.36 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
{
"author": "[email protected]",
"dependencies": {
"ajv": "6.12.2",
"axios": "0.19.2",
"body-parser": "1.19.0",
"commander": "4.1.1",
"express": "4.17.1",
"fs-extra": "9.0.1",
"lodash": "4.17.15",
"morgan": "1.10.0",
"shortid": "2.2.15"
},
"devDependencies": {
"@types/express": "4.17.6",
"@types/fs-extra": "9.0.1",
"@types/jest": "25.2.3",
"@types/lodash": "4.14.155",
"@types/klaw-sync": "6.0.0",
"@types/morgan": "1.9.0",
"@types/node": "12.12.6",
"@types/shortid": "0.0.29",
"klaw-sync": "6.0.0",
"jest": "26.0.1",
"jest-junit": "10.0.0",
"ts-jest": "26.1.0",
"tslint": "6.1.2",
"typescript": "3.9.5"
},
"description": "A service mock",
"license": "ISC",
"main": "index.js",
"name": "beetle",
"repository": "https://github.com/celsasser/beetle",
"scripts": {
"build": "tsc -d -p tsconfig.json && chmod u+x dist/index.js",
"coverage": "jest --coverage ./test/unit ",
"lint": "tslint --config tslint.json \"./src/**/*.ts\" \"./test/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"rebuild": "rm -rf dist && npm run build",
"sample:start:mock": "dist/index.js run ./res/configurations/setup-test-mock.json &",
"sample:start:responder": "dist/index.js run ./res/configurations/setup-test-responder.json &",
"start": "node dist/index.js",
"test": "jest ./test/unit && npm run lint"
},
"version": "0.0.2"
}