-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.93 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
{
"name": "promisify-object",
"description": "Promisify functions in a given object",
"main": "dist/index.js",
"scripts": {
"build": "babel -d dist src",
"cover": "nyc npm test",
"coveralls": "npm run cover && npm run report:text | coveralls",
"lint": "standard",
"multitest": "multitest",
"premultitest": "npm run lint",
"prepublish": "npm run build",
"pretest": "npm run lint",
"report:html": "nyc report --reporter=html",
"report:text": "nyc report --reporter=text-lcov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post && git fetch --tags && pr-tagger --log-level debug --access-token ${GH_TOKEN}",
"test": "ava"
},
"repository": {
"type": "git",
"url": "https://github.com/jcollado/promisify-object.git"
},
"keywords": [
"promisify",
"object"
],
"author": "Javier Collado <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/jcollado/promisify-object/issues"
},
"homepage": "https://github.com/jcollado/promisify-object#readme",
"devDependencies": {
"ava": "0.15.2",
"babel-cli": "6.9.0",
"babel-preset-es2015-node4": "2.1.0",
"babel-register": "6.9.0",
"coveralls": "2.11.9",
"cz-conventional-changelog": "1.1.6",
"ghooks": "1.2.3",
"multitest": "0.4.1",
"nyc": "6.4.4",
"pr-tagger": "0.7.1",
"require-inject": "1.4.0",
"semantic-release": "4.3.5",
"sinon": "1.17.4",
"standard": "7.1.2",
"validate-commit-msg": "2.6.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "npm test",
"pre-push": "npm run multitest"
}
},
"dependencies": {
"promisify-function": "1.3.2"
},
"ava": {
"require": [
"babel-register"
]
},
"babel": {
"presets": [
"es2015-node4"
]
}
}