-
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.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 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": "@sugo/serve-static",
"description": "Static file serving handler",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register src/test/*.test.ts",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"version": "2.1.0",
"author": {
"name": "Francisco Javier Sucre González",
"email": "franciscojsucreg@gmail.com",
"url": "https://github.com/franciscosucre"
},
"dependencies": {},
"license": "ISC",
"keywords": [
"server",
"http",
"request"
],
"devDependencies": {
"@sugo/router": "^1.6.9",
"@sugo/server": "^2.0.6",
"@types/chai": "^4.1.7",
"@types/cors": "^2.8.4",
"@types/mocha": "^5.2.6",
"@types/supertest": "^2.0.7",
"chai": "^4.2.0",
"cors": "^2.8.5",
"mocha": "^6.1.3",
"prettier": "^1.17.0",
"supertest": "^4.0.2",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.3"
},
"engines": {
"node": ">=8.12.0"
}
}