-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.63 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
49
50
51
52
53
54
55
{
"name": "@cardboardrobots/validation-middleware",
"version": "0.0.0",
"description": "Validation Middleware",
"repository": {
"url": "https://github.com/cardboardrobots/validation-middleware"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "tsc-watch --onSuccess \"node --inspect=0.0.0.0 ./dist/example/index.js\"",
"test": "npm run lint && npm run unit",
"clean": "rimraf ./dist",
"prepublishOnly": "rimraf ./dist && tsc --declaration",
"watch": "tsc --watch --declaration",
"unit": "jest --verbose --coverage",
"lint": "eslint 'src/**/*.ts' --fix"
},
"author": "",
"license": "ISC",
"peerDependencies": {
"@cardboardrobots/pipeline": "0.0.3",
"@cardboardrobots/query-string": "0.0.2",
"@cardboardrobots/route": "0.0.1",
"sierra": "0.6.0-rc1.3"
},
"devDependencies": {
"@cardboardrobots/pipeline": "0.0.3",
"@cardboardrobots/query-string": "0.0.2",
"@cardboardrobots/route": "0.0.1",
"@cardboardrobots/test-util": "0.0.0",
"@shopify/eslint-plugin": "40.1.0",
"@types/jest": "^26.0.22",
"@types/supertest": "2.0.11",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sierra": "0.6.0-rc1.3",
"supertest": "6.1.3",
"ts-jest": "26.5.4",
"tsc-watch": "4.2.9",
"typescript": "^4.2.4"
},
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"<rootDir>/dist/"
]
}
}