-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.22 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
{
"name": "typed-contracts",
"version": "3.0.0",
"description": "Validation with good Flow and TypeScript type inference",
"main": "lib/bundle.js",
"files": [
"README.md",
"LICENSE.md",
"lib",
"esm",
"src"
],
"types": "src/index.d.ts",
"scripts": {
"lint": "yarn lint:md && yarn lint:js",
"lint:js": "eslint .",
"lint:md": "node scripts/mdlint",
"flow": "flow",
"test": "jest --env=node --no-watchman",
"test:ci": "jest --env=node",
"build": "rollup -c"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn flow && yarn test"
}
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-flow": "^7.12.1",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.8",
"@semantic-release/release-notes-generator": "^9.0.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"flow-bin": "^0.138.0",
"flow-typed": "^3.2.1",
"husky": "^4.3.0",
"jest": "^26.6.3",
"markdownlint": "^0.22.0",
"prettier": "^2.2.1",
"rollup": "^2.34.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-flow-entry": "^0.3.4",
"semantic-release": "^17.3.0",
"shx": "^0.3.3",
"typescript": "^4.1.2"
},
"repository": "bigslycat/typed-contracts",
"keywords": [
"TypeScript",
"TS",
"Flow",
"Flowtype",
"contracts",
"validation",
"type inference"
],
"author": {
"name": "Pavel Tereschenko",
"email": "[email protected]",
"url": "https://github.com/bigslycat"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bigslycat/typed-contracts/issues"
},
"homepage": "https://github.com/bigslycat/typed-contracts#readme"
}