-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.51 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
{
"name": "@f0rr0/church-encoding",
"version": "1.4.1",
"description": "Church encodings for primitives",
"main": "dist/church.cjs.js",
"module": "dist/church.esm.js",
"browser": "dist/church.umd.js",
"repository": "https://github.com/f0rr0/church-encoding",
"author": "Sid Jain",
"license": "WTFPL",
"devDependencies": {
"@semantic-release/changelog": "^2.0.1",
"@semantic-release/exec": "^2.2.3",
"@semantic-release/git": "^4.0.1",
"@semantic-release/github": "^4.2.8",
"@semantic-release/npm": "^3.2.4",
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"codecov": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.15.0-rc.13",
"jest": "^22.4.3",
"jest-extended": "^0.7.0",
"lint-staged": "^7.0.1",
"prettier": "1.12.0",
"regenerator-runtime": "^0.11.1",
"rollup": "^0.57.1",
"semantic-release": "^15.1.4"
},
"scripts": {
"test": "jest",
"test:ci": "jest --coverage",
"codecov": "codecov -f coverage/coverage-final.json",
"format": "eslint --fix lib test",
"build": "rollup -c -m",
"build:watch": "rollup -c -w",
"test:watch": "jest --coverage --watchAll",
"prepublishOnly": "yarn build",
"release": "semantic-release --ci=false --debug"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"setupTestFrameworkScriptFile": "jest-extended",
"collectCoverageFrom": [
"lib/*.js",
"!lib/index.js"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"release": {
"verifyConditions": [
{
"path": "@semantic-release/exec",
"cmd": "yarn test"
},
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
]
}
}