-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
103 lines (103 loc) · 2.73 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "hyper-ts",
"version": "0.7.9",
"description": "Type safe middleware architecture for HTTP servers",
"main": "lib/index.js",
"module": "es6/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"lint": "tslint -p .",
"jest": "jest",
"prettier": "prettier \"{scripts,src,test}/**/*.ts\"",
"fix-prettier": "prettier --write \"{scripts,src,test}/**/*.ts\"",
"test": "npm run dtslint && npm run jest && npm run docs",
"clean": "rm -rf ./dist",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.build-es6.json && npm run import-path-rewrite && ts-node scripts/build",
"postbuild": "prettier --write \"./dist/**/*.ts\"",
"prepublishOnly": "ts-node scripts/pre-publish",
"prerelease": "npm run build",
"release": "ts-node scripts/release",
"prepare": "npm run build",
"dtslint": "dtslint dtslint",
"docs": "docs-ts",
"import-path-rewrite": "import-path-rewrite"
},
"repository": {
"type": "git",
"url": "https://github.com/DenisFrezzato/hyper-ts.git"
},
"author": "Giulio Canti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DenisFrezzato/hyper-ts/issues"
},
"homepage": "https://github.com/DenisFrezzato/hyper-ts",
"devDependencies": {
"@types/express": "^4.17.8",
"@types/glob": "^7.2.0",
"@types/jest": "^24.9.1",
"@types/node": "^11.11.6",
"@types/qs": "^6.9.6",
"@types/supertest": "^2.0.11",
"docs-ts": "^0.6.10",
"dtslint": "github:gcanti/dtslint",
"express": "^4.17.1",
"fp-ts": "^2.13.2",
"fp-ts-contrib": "^0.1.26",
"fp-ts-routing": "^0.5.4",
"glob": "^7.2.0",
"husky": "^4.3.8",
"import-path-rewrite": "github:gcanti/import-path-rewrite",
"io-ts": "^2.0.1",
"io-ts-types": "^0.5.16",
"jest": "^24.8.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"qs": "^6.10.1",
"supertest": "^6.1.3",
"ts-jest": "^24.0.2",
"ts-node": "3.3.0",
"tslint": "^5.14.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^4.3.2"
},
"peerDependencies": {
"express": "^4.16.2",
"fp-ts": "^2.10.5",
"fp-ts-contrib": "^0.1.26"
},
"tags": [
"typescript",
"express",
"middleware",
"fp-ts",
"io-ts",
"functional-programming",
"hyper"
],
"keywords": [
"typescript",
"express",
"middleware",
"fp-ts",
"io-ts",
"functional-programming",
"hyper"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run build && npm run test"
}
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write"
],
"{src,test}/**/*.{ts,js}": [
"npm run lint"
]
}
}