-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "pipou",
"version": "1.0.0",
"description": "Middleware builder",
"engines": {
"node": ">=14.0.0"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"test": "tap --no-coverage --ts --reporter=spec tests/**/*.test.ts",
"build": "rimraf ./build && tsc",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run build",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/franck-romano/pipou.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/franck-romano/pipou/issues"
},
"homepage": "https://github.com/franck-romano/pipou#readme",
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/tap": "^15.0.5",
"@types/node": "^18.0.3",
"ts-node": "10.6.0",
"gts": "^3.1.0",
"tap": "^15.1.6",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"printWidth": 120,
"tabWidth": 2
}
}