-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.47 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
{
"name": "messenger-req-log",
"description": "Use `req.log` for logging (messenger-core)",
"version": "0.1.0",
"homepage": "https://github.com/AndreasPizsa/messenger-req-log",
"author": "Andreas Pizsa (https://github.com/AndreasPizsa)",
"repository": "AndreasPizsa/messenger-req-log",
"bugs": {
"url": "https://github.com/AndreasPizsa/messenger-req-log/issues"
},
"license": "MIT",
"files": [
"index.js",
"LICENSE"
],
"main": "index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"lint": "eslint **/*.js",
"test": "npm run lint && nyc ava",
"commit": "git cz",
"commitmsg": "validate-commit-msg",
"precommit": "npm test",
"prepublishOnly": "npm test",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"start": "micro",
"dev": "micro-dev"
},
"keywords": [
"log",
"messenger",
"req"
],
"devDependencies": {
"@andreaspizsa/eslint-config": "0.0.1",
"ava": "^0.23.0",
"codecov": "^3.0.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.8.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"nyc": "^11.2.1",
"validate-commit-msg": "^2.14.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}