-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.94 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
{
"name": "naivefp",
"version": "0.0.0-development",
"description": "A naive implementation of functional library for JavaScript programmers",
"main": "dist/index.js",
"scripts": {
"start": "nps",
"test": "nps test",
"commitmsg": "opt --in commit-msg --exec \"validate-commit-msg\"",
"precommit": "lint-staged && opt --in pre-commit --exec \"npm start validate\"",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"files": [
"dist"
],
"keywords": [],
"author": "Stoyan Delev <[email protected]> (http://stoyandelev.com/)",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"all-contributors-cli": "^4.0.1",
"babel-cli": "^6.24.1",
"babel-jest": "^19.0.0",
"babel-preset-env": "^1.2.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.23.0",
"codecov": "^2.1.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.17.0",
"eslint-config-kentcdodds": "^12.0.0",
"flow-bin": "^0.44.2",
"husky": "^0.13.2",
"jest-cli": "^19.0.2",
"lint-staged": "^3.3.1",
"nps": "^5.0.3",
"nps-utils": "^1.1.2",
"opt-cli": "^1.5.1",
"prettier-eslint-cli": "^3.1.2",
"semantic-release": "^6.3.2",
"validate-commit-msg": "^2.11.1"
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/mutebg/naive-fp.git"
},
"bugs": {
"url": "https://github.com/mutebg/naive-fp/issues"
},
"homepage": "https://github.com/mutebg/naive-fp#readme"
}