-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.4 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
{
"name": "propagate",
"description": "Propagate events from one event emitter into another",
"keywords": [
"event",
"events",
"emitter",
"eventemitter",
"propagation"
],
"version": "0.0.0-development",
"author": "Pedro Teixeira <[email protected]>",
"contributors": [
{
"name": "Pedro Teixeira"
}
],
"repository": "nock/propagate",
"homepage": "http://github.com/nock/propagate#readme",
"bugs": "http://github.com/nock/propagate/issues",
"engines": {
"node": ">= 8"
},
"dependencies": {},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"prettier": "^1.16.4",
"semantic-release": "16.0.0-beta.22",
"tap": "^12.6.1"
},
"scripts": {
"lint": "eslint \"**/*.js\"",
"unit": "tap --100 tests/index.js",
"coverage": "tap --coverage-report=html && open coverage/lcov-report/index.html",
"prettier": "prettier --write \"**/*.@(js|md|yml|json)\"",
"prettier:check": "prettier --check \"**/*.@(js|md|yml|json)\"",
"pretest": "npm run lint",
"test": "npm run -s unit",
"posttest": "npm run -s prettier:check"
},
"nyc": {
"exclude": [
"tests/"
]
},
"license": "MIT"
}