-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.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
{
"name": "@fpc/maybe",
"description": "Maybe type for modern javascript",
"version": "1.1.4",
"author": "Emiliano Bovetti <[email protected]>",
"license": "GPL-3.0",
"keywords": [
"functional",
"collection",
"maybe",
"fpc",
"fp"
],
"type": "module",
"main": "./src/index.js",
"scripts": {
"test": "node --experimental-vm-modules $(yarn bin jest)",
"lint": "eslint ."
},
"jest": {
"transform": {}
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/fpc-js/maybe.git"
},
"bugs": {
"url": "https://github.com/fpc-js/maybe/issues"
},
"release": {
"branch": "master",
"prepare": [
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"src/*.js"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
]
},
"dependencies": {
"@fpc/types": "^1.0.2"
},
"devDependencies": {
"eslint": "^7.31.0",
"jest": "^27.0.6"
}
}