-
Notifications
You must be signed in to change notification settings - Fork 0
/
_package.json
56 lines (56 loc) · 1.59 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
56
{
"name": "middles",
"version": "0.0.3",
"description": "Another small middleware pipeline library for Nodejs.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"middleware",
"pipeline",
"pipe"
],
"scripts": {
"clean": "rimraf coverage dist tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"prejest": "npm run lint",
"jest": "jest",
"pretest": "npm run lint",
"test": "jest --coverage",
"test:watch": "chokidar \"*.js\" \"*.json\" \"src/**/*.ts\" \"__tests__/**/*.ts\" --command \"npm run jest\" --initial",
"ci": "npm run test",
"docs": "typedoc"
},
"devDependencies": {
"@types/assert-plus": "^1.0.4",
"@types/jest": "~25.2.3",
"@types/node": "~14.0.5",
"@typescript-eslint/eslint-plugin": "~3.0.1",
"@typescript-eslint/parser": "~3.0.1",
"chokidar-cli": "^2.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-jest": "~23.13.1",
"eslint-plugin-prettier": "^3.1.3",
"jest": "~26.0.1",
"prettier": "~2.0.5",
"rimraf": "~3.0.2",
"ts-jest": "~26.0.0",
"typedoc": "^0.16.10",
"typescript": "~3.9.3"
},
"dependencies": {
"assert-plus": "^1.0.0"
},
"author": "Phillip Clark <[email protected]>",
"license": "MIT",
"repository": {
"url": "https://github.com/flitbit/middles"
},
"bugs": {
"url": "https://github.com/flitbit/middles/issues"
},
"homepage": "https://github.com/flitbit/middles#readme"
}