-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.68 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": "@rproenza/event-distributor",
"version": "1.3.6",
"description": "System to help components and Micro UI applications to communicate between each other",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "nyc --reporter=html --reporter=text mocha --reporter spec",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"local-publish": "npm run build && npm run test && npm publish --access public"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"watermarks": {
"lines": [
80,
95
],
"functions": [
80,
95
],
"branches": [
80,
95
],
"statements": [
80,
95
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/rproenza86/events-distributor.git"
},
"keywords": [],
"author": "Raul Rodriguez Proenza <[email protected]> (https://github.com/rproenza86)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/rproenza86/events-distributor/issues"
},
"homepage": "https://github.com/rproenza86/events-distributor#readme",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nyc": "^13.2.0",
"typescript": "^3.2.2"
},
"dependencies": {
"coveralls": "^3.0.2",
"husky": "^1.3.1",
"redux": "^4.0.1"
},
"directories": {
"test": "test"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && npm run test",
"pre-push": "npm run test"
}
},
"publishConfig": {
"access": "public"
}
}