This repository was archived by the owner on Aug 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.32 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.32 KB
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
{
"name": "protract",
"description": "Copying object properties, the robust way",
"main": "src/index.js",
"scripts": {
"commit": "git-cz",
"test": "istanbul cover -x *.test.js _mocha -- -R spec src/index.test.js",
"watch": "mocha src/index.test.js -w",
"check-coverage": "istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/ecancino/protract.git"
},
"keywords": [
"extend",
"assign",
"clone"
],
"author": "Eduardo Cancino <eduardo.cancino@ciudadde.mx> (http://github.com/ecancino)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ecancino/protract/issues"
},
"homepage": "https://github.com/ecancino/protract",
"devDependencies": {
"chai": "3.2.0",
"mocha": "2.3.2",
"ghooks": "0.3.2",
"istanbul": "0.3.21",
"codecov.io": "0.1.6",
"commitizen": "1.0.4",
"semantic-release": "^4.3.5",
"cz-conventional-changelog": "1.1.0"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "npm test && npm run check-coverage"
}
}
}