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
96 lines (96 loc) · 2.5 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.5 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
{
"name": "eq8-api",
"description": "EQuateJS API Library - Actions and Views",
"main": "index.js",
"scripts": {
"audit": "nsp check && npm outdated",
"build": "npm run deps && npm run audit && 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",
"lint": "eslint lib test",
"publish:latest": "npm publish --tag latest",
"test": "tape test/test.*.js | faucet",
"cover": "istanbul cover tape test/test.*.js",
"analyze": "plato -d analysis index.js ./lib/index.js ./lib/registrars/*.js ./lib/api/*.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"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"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/eq8/eq8js-api.git"
},
"keywords": [
"api",
"platform"
],
"author": "bbartolome",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/eq8/eq8js-api/issues"
},
"homepage": "https://eq8.js.org",
"engines": {
"node": ">=6",
"npm": ">=2.15.9 <3.0.0"
},
"dependencies": {
"async": "2.4.1",
"bloomrun": "3.0.4",
"eq8-core": "2.0.0",
"joi": "10.0.2",
"lodash": "4.17.4",
"rx": "4.1.0"
},
"devDependencies": {
"dependency-check": "2.8.0",
"doctoc": "1.3.0",
"eslint": "3.12.2",
"eslint-config-eslint": "3.0.0",
"faucet": "0.0.1",
"ghooks": "1.3.2",
"istanbul": "0.4.5",
"npm-check-updates": "2.11.1",
"nsp": "2.6.3",
"plato": "1.7.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"
}
}
}