-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
101 lines (101 loc) · 2.38 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
{
"name": "igogo",
"version": "1.9.0",
"description": "Fast Either and Maybe from Fantasy Land with Flow and TypeScript support",
"repository": "[email protected]:bigslycat/igogo.git",
"author": "Pavel Tereschenko <[email protected]> (https://github.com/bigslycat)",
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.es.js",
"files": [
"README.md",
"LICENSE.md",
"lib",
"esm",
"src"
],
"types": "src/index.d.ts",
"scripts": {
"build": "rollup -c",
"lint": "eslint .",
"flow": "flow",
"test": "ava --verbose",
"test:nyc": "nyc ava --verbose",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn flow"
}
},
"ava": {
"require": [
"@babel/register"
]
},
"nyc": {
"require": [
"esm",
"@babel/register"
],
"reporter": [
"lcov",
"text"
],
"exclude": [
"**/index.js",
"**/*.config.js",
"**/*.test.js",
"lib"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"core-js": "^3.6.4"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-flow": "^7.8.3",
"@babel/register": "^7.8.3",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.4",
"@semantic-release/npm": "^7.0.3",
"@semantic-release/release-notes-generator": "^9.0.1",
"ava": "^3.4.0",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"esm": "^3.2.25",
"flow-bin": "^0.120.0",
"husky": "^4.2.3",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-flow-entry": "^0.3.3",
"semantic-release": "^17.0.4",
"sinon": "^9.0.0",
"typescript": "^3.8.2"
},
"keywords": [
"Maybe",
"Either",
"ADT",
"Flow",
"TypeScript",
"TS",
"FL",
"Fantasy Land"
]
}