forked from leozhao0709/express-flash-message
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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
{
"name": "express-flash-message",
"version": "2.0.0",
"main": "dist/index.js",
"repository": "https://github.com/leozhao0709/express-flash-message.git",
"author": "Lei Zhao <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.9",
"@types/express-session": "^1.17.3",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lodash": "^4.17.20",
"nodemon": "^2.0.6",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"ttypescript": "^1.5.12",
"typescript": "^4.1.3",
"typescript-transform-paths": "^2.1.0"
},
"types": "dist/index.d.ts",
"scripts": {
"start": "nodemon",
"test": "yarn typeCheck && yarn lint && jest",
"typeCheck": "tsc --noEmit",
"test:watch": "jest --watch --coverage=false",
"build": "yarn build:clean && ttsc -p tsconfig.build.json",
"build:clean": "rm -rf dist",
"build:types": "cp -r src/@types ./dist",
"clean": "rm -rf node_modules dist coverage yarn.lock",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepublishOnly": "yarn lint && yarn test && yarn build",
"preversion": "yarn lint && yarn test",
"postversion": "git push && git push --tags"
},
"files": [
"dist/**/*"
],
"keywords": [],
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}