This repository was archived by the owner on Apr 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.34 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.34 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "eq8",
"description": "A web API gateway for using (E)vents and (Q)ueries to manage application state",
"main": "index.js",
"scripts": {
"audit": "nsp check && npm outdated",
"build": "npm-shrinkwrap && npm run build:doc",
"build:doc": "doctoc --github --title \"## Contents\" ./",
"deps": "npm run deps:missing && npm run deps:extra",
"deps:missing": "dependency-check package.json",
"deps:extra": "dependency-check package.json --extra --no-dev --ignore",
"upgrade": "ncu -u --semverLevel major && rm -rf node_modules npm-shrinkwrap.json && npm install && npm-shrinkwrap",
"lint": "eslint lib test",
"publish:latest": "npm publish --tag latest",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "tape test/test.unit.js | faucet",
"test:integration": "tape test/test.integration.js | faucet",
"cover": "istanbul cover tape test/test.*.js",
"analyze": "plato -d analysis ./lib/index.js ./lib/api/*.js ./lib/asyncwares/*.js ./lib/listeners/*.js ./lib/modules/*.js ./lib/registrars/*.js ./lib/syncwares/*.js",
"shrinkwrap": "npm-shrinkwrap",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"commit": "git-cz"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint && npm run test:unit",
"commit-msg": "validate-commit-msg",
"pre-push": "npm install && npm run build && npm run test"
},
"validate-commit-msg": {
"helpMessage": "allowed types: feat, fix, docs, style, refactor, perf, test, chore, revert"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"fallbackTags": {
"next": "latest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/eq8/eq8js.git"
},
"keywords": [
"api",
"gateway"
],
"author": "bbartolome",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/eq8/eq8js/issues"
},
"homepage": "https://eq8.js.org",
"engines": {
"node": ">=4.5.0",
"npm": ">=2.15.9 <3.0.0"
},
"dependencies": {
"async": "2.4.1",
"body-parser": "1.17.2",
"connect": "3.6.2",
"eq8-api": "2.0.0",
"jsonwebtoken": "7.4.1",
"lodash": "4.17.4",
"passport": "0.3.2",
"passport-anonymous": "1.0.1",
"passport-jwt": "2.2.1",
"route-recognizer": "0.3.3",
"rx": "4.1.0",
"ws": "1.1.1"
},
"devDependencies": {
"commitizen": "2.9.6",
"cz-conventional-changelog": "1.2.0",
"dependency-check": "2.8.0",
"doctoc": "1.3.0",
"eslint": "3.19.0",
"eslint-config-eslint": "4.0.0",
"faucet": "0.0.1",
"ghooks": "2.0.0",
"istanbul": "0.4.5",
"npm-check-updates": "2.11.1",
"npm-shrinkwrap": "200.5.1",
"nsp": "2.6.3",
"plato": "1.7.0",
"proxyquire": "1.8.0",
"request": "2.81.0",
"semantic-release": "6.3.6",
"tape": "4.6.3",
"validate-commit-msg": "2.12.1"
},
"eslintConfig": {
"extends": "eslint",
"env": {
"node": true
},
"rules": {
"indent": [
"error",
"tab"
],
"quotes": [
"error",
"single"
],
"no-invalid-this": "off",
"no-underscore-dangle": "off",
"no-use-before-define": [
"error",
{
"functions": false
}
],
"require-jsdoc": "off"
}
}
}