-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·47 lines (47 loc) · 1.11 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
{
"name": "service-name",
"version": "1.3.1",
"description": "A middleware, appending a `x-name` header containing the current packages version\"",
"main": "build/index.cjs.js",
"module": "build/index.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/wasc-io/service-name"
},
"author": "Nicolai Schmid <nicolai@schmid.uno>",
"license": "Apache-2.0",
"private": false,
"scripts": {
"build": "rollup -c",
"lint": "wasc-tools lint",
"format": "wasc-tools format"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --allow-empty"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint",
"*.{js,json,graphql,md,html,ts,tsx}": "npm run format --"
},
"files": [
"dist/",
"docs/",
"README.md"
],
"dependencies": {
"express": "^4.18.2",
"read-pkg-up": "7.0.0"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@wasc/tools": "5.9.0",
"husky": "4.2.5",
"lint-staged": "10.2.11",
"rollup": "3.9.1",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-ts": "^3.0.2",
"typescript": "^4.9.4"
}
}