-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.32 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.32 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
{
"name": "beeserver",
"version": "0.0.1",
"description": "An api mocked server with a mocked db",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"test": "jest --config jestconfig.json",
"version": "npm run format && git add -A src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mnecchi/beeserver.git"
},
"keywords": [
"api",
"server",
"mock",
"development"
],
"author": "Massimo Necchi",
"license": "ISC",
"files": [
"lib/**/*"
],
"bugs": {
"url": "https://github.com/mnecchi/beeserver/issues"
},
"homepage": "https://github.com/mnecchi/beeserver#readme",
"dependencies": {
"body-parser": "^1.19.0",
"dev-dbmock": "0.0.1",
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.4",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.0.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.3"
}
}