-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
83 lines (83 loc) · 2.27 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
{
"name": "fp-ts-routing",
"version": "0.6.0",
"description": "A type-safe routing library for TypeScript",
"files": [
"lib",
"es6"
],
"main": "lib/index.js",
"module": "es6/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"engines": {
"npm": ">= 6.14"
},
"scripts": {
"prepare": "husky install",
"clean": "rm -rf lib/* es6/*",
"prettier:fix": "prettier --write \"{src,test}/**/*.ts\"",
"check": "tsc",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"dtslint": "dtslint --expectOnly dtslint",
"pretest": "npm run check && npm run lint && npm run dtslint",
"test": "jest --ci",
"mocha": "mocha -r ts-node/register test/*.ts",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.build-es6.json",
"postbuild": "import-path-rewrite",
"prepublishOnly": "npm run build",
"docs": "docs-ts",
"docs:update": "npm run docs && git add docs"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/fp-ts-routing.git"
},
"author": "Giulio Canti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/fp-ts-routing/issues"
},
"homepage": "https://github.com/gcanti/fp-ts-routing",
"peerDependencies": {
"fp-ts": "^2.0.1",
"io-ts": "^2.0.0"
},
"devDependencies": {
"@definitelytyped/dtslint": "^0.0.163",
"@types/jest": "^29.5.2",
"@types/node": "^16.18.36",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"docs-ts": "^0.8.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-deprecation": "^1.4.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^10.0.0",
"fp-ts": "^2.0.1",
"husky": "^8.0.3",
"import-path-rewrite": "github:gcanti/import-path-rewrite",
"io-ts": "^2.0.0",
"jest": "^29.5.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"tags": [
"typescript",
"functional-programming",
"routing",
"applicative"
],
"keywords": [
"typescript",
"functional-programming",
"routing",
"applicative"
]
}