-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 2.25 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
{
"name": "expressive-ts",
"version": "0.0.2",
"author": "Maxwell Brown <maxwellbrown1990@gmail.com> (https://github.com/IMax153)",
"description": "A functional programming library designed to simplify building complex regular expressions",
"license": "MIT",
"main": "lib/index.js",
"module": "es6/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"files": [
"lib",
"es6"
],
"homepage": "https://github.com/IMax153/expressive-ts",
"repository": {
"type": "git",
"url": "https://github.com/IMax153/expressive-ts.git"
},
"bugs": {
"url": "https://github.com/IMax153/expressive-ts/issues"
},
"scripts": {
"build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.build-es6.json && import-path-rewrite",
"postbuild": "prettier --write \"./{lib,es6}/**/*.ts\"",
"import-path-rewrite": "import-path-rewrite",
"lint": "eslint",
"jest": "jest --ci",
"jest-clear-cache": "jest --clearCache",
"test": "yarn lint && yarn prettier && yarn jest-clear-cache && yarn jest && yarn docs",
"prettier": "prettier --list-different \"./{src,test,examples}/**/*.ts\"",
"prepublish": "yarn build",
"doctoc": "doctoc README.md --title \"**Table of contents**\"",
"docs": "docs-ts"
},
"peerDependencies": {
"fp-ts": "^2.7.1"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.29",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"docs-ts": "^0.6.3",
"doctoc": "^2.0.0",
"eslint": "^7.20.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-prettier": "^3.3.1",
"glob": "^7.1.6",
"husky": "^5.0.9",
"import-path-rewrite": "github:gcanti/import-path-rewrite",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"tags": [
"typescript",
"functional-programming",
"regular-expressions",
"regex"
],
"keywords": [
"typescript",
"functional-programming",
"regular-expressions",
"regex"
]
}