-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.17 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
{
"name": "hot-press",
"version": "2.1.5",
"description": "Event lifecycle management",
"main": "dist/hot-press.js",
"scripts": {
"build": "rollup -c",
"build-w": "npm run build -- -w",
"cover": "cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"lint": "eslint src/* test/*",
"lint-w": "nodemon -x 'npm run lint' -w src -w test",
"prepublishOnly": "npm test && npm run build",
"spec": "cross-env NODE_ENV=test nyc --reporter=lcov mocha --ui tdd --check-leaks --require @babel/register",
"spec-w": "mocha --ui tdd --check-leaks --watch --growl --reporter nyan --require @babel/register",
"test": "npm run lint && cross-env NODE_ENV=test nyc --reporter=lcovonly --reporter=text mocha --ui tdd --check-leaks --require @babel/register"
},
"keywords": [
"event",
"pubsub",
"broker"
],
"author": "John Wright <johngeorge.wright@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-external-helpers": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-json-strings": "^7.10.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/register": "^7.10.1",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"commitizen": "^4.1.2",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"lodash.functions": "^4.3.0",
"mocha": "^8.0.1",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^15.1.0",
"rollup": "^2.16.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"sourceMap": false,
"instrument": false
}
}