forked from gcanti/fp-ts-routing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.07 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.07 KB
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
{
"name": "fp-ts-routing",
"version": "0.5.4",
"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,
"scripts": {
"lint": "tslint -p .",
"jest": "jest --ci",
"jest-coverage": "jest --ci --coverage",
"prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --list-different \"{src,test}/**/*.ts\"",
"fix-prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --write \"{src,test}/**/*.ts\"",
"test": "npm run prettier && npm run lint && npm run dtslint && npm run jest && npm run docs",
"clean": "rm -rf lib/* es6/*",
"prebuild": "npm run clean",
"build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.build-es6.json",
"prepublish": "npm run build",
"dtslint": "dtslint dtslint",
"docs": "docs-ts",
"mocha": "mocha -r ts-node/register test/*.ts",
"postbuild": "import-path-rewrite"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/fp-ts-routing.git"
},
"author": "Giulio Canti <giulio.canti@gmail.com>",
"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": {
"@types/jest": "^22.2.2",
"@types/node": "^12.6.8",
"docs-ts": "^0.6.7",
"dtslint": "github:gcanti/dtslint",
"fp-ts": "^2.0.1",
"import-path-rewrite": "github:gcanti/import-path-rewrite",
"io-ts": "^2.0.0",
"jest": "^24.8.0",
"mocha": "^6.1.4",
"prettier": "^2.7.1",
"ts-jest": "^24.0.2",
"ts-node": "3.3.0",
"tslint": "5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^4.7.4"
},
"tags": [
"typescript",
"functional-programming",
"routing",
"applicative"
],
"keywords": [
"typescript",
"functional-programming",
"routing",
"applicative"
]
}