-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.89 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": "percentage-incrementor",
"version": "1.0.0",
"description": "Store the percentage of an incrementing subset against a total.",
"main": "lib/index.js",
"scripts": {
"test": "yarn build && jest --coverage",
"lint": "eslint --ignore-path .gitignore .",
"precommit": "yarn lint",
"prepush": "yarn test",
"commitmsg": "commitlint -e $GIT_PARAMS",
"prepare": "yarn build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"flow": "flow",
"build": "flow-remove-types src/ --out-dir lib/ && flow-copy-source src lib"
},
"author": "Peter Sieg <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^6.1.2",
"@commitlint/config-conventional": "^6.1.2",
"babel-eslint": "^8.2.2",
"condition-noop": "^1.0.0",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"flow-bin": "^0.66.0",
"flow-copy-source": "^1.3.0",
"flow-remove-types": "^1.2.3",
"husky": "^0.14.3",
"jest": "^22.4.2",
"semantic-release": "^8.0.0",
"semantic-release-conventional-commits": "^2.0.0"
},
"jest": {
"coverageDirectory": "__coverage__",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testEnvironment": "node"
},
"directories": {
"lib": "lib"
},
"release": {
"analyzeCommits": "semantic-release-conventional-commits",
"verifyConditions": "condition-noop"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/chasingmaxwell/percentage-incrementor.git"
},
"bugs": {
"url": "https://github.com/chasingmaxwell/percentage-incrementor/issues"
},
"homepage": "https://github.com/chasingmaxwell/percentage-incrementor#readme"
}