forked from Bsociety/seneca-merge-payload
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.59 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
{
"name": "seneca-merge-payload",
"version": "1.0.1",
"description": "SenecaJS Merge Payload",
"main": "index.js",
"engines": {
"node": ">=8.9.0"
},
"files": [
"src"
],
"scripts": {
"test": "LOG_LEVEL=error mocha test/*.test.js --exit --timeout 555555",
"coverage": "LOG_LEVEL=error nyc mocha --exit --timeout 555555",
"htmlCoverage": "nyc --reporter=html mocha --exit --timeout 555555",
"fixStyle": "./node_modules/eslint/bin/eslint.js ./ --fix"
},
"husky": {
"hooks": {
"pre-commit": "./node_modules/eslint/bin/eslint.js ./",
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Btime/seneca-merge-payload.git"
},
"keywords": [
"merge",
"payload",
"microservice",
"package"
],
"author": "Btime <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Btime/seneca-merge-payload.git/issues"
},
"homepage": "https://github.com/Btime/seneca-merge-payload.git#readme",
"dependencies": {
"btime-schema-validate-package": "github:Btime/btime-schema-validate-package",
"joi": "^13.1.2",
"joi-date-extensions": "^1.2.0",
"lodash": "^4.17.5",
"seneca": "^3.7.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^0.15.0-rc.3",
"mocha": "^5.2.0",
"nyc": "^13.0.1"
}
}