forked from Bsociety/seneca-merge-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.7 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
{
"name": "seneca-merge-validate",
"version": "2.2.0",
"description": "SenecaJS Merge Validate",
"main": "index.js",
"engines": {
"node": ">=8.9.0"
},
"files": [
"src"
],
"scripts": {
"test": "NODE_ENV=dev nyc --check-coverage --lines 90 --functions 90 --reporter=html --reporter=text mocha test/*.test.js --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-validate.git"
},
"keywords": [
"merge",
"validate",
"microservice",
"package"
],
"author": "Btime <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Btime/seneca-merge-validate.git/issues"
},
"homepage": "https://github.com/Btime/seneca-merge-validate.git#readme",
"dependencies": {
"@hapi/joi": "^15.0.3",
"@hapi/joi-date": "^1.3.0",
"@hapi/topo": "^3.1.0",
"btime-schema-validate-package": "github:btime/btime-schema-validate-package#semver:^2",
"error-messages": "github:Btime/error-messages#semver:^2",
"joi-language-package": "github:Btime/joi-language-package#semver:^2",
"lodash": "^4.17.5"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^2.3.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"seneca": "^3.11.0"
}
}