This repository was archived by the owner on Apr 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.38 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.38 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
{
"name": "hitchy-plugin-odem",
"version": "0.5.6",
"description": "ODM API used by hitchy framework",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "cross-env NODE_ENV=test mocha --ui=tdd 'test/unit/**/*.js'",
"resilience": "cross-env NODE_ENV=test node --expose-gc test/resilience/index/index.js > test/resilience/index/memory.csv",
"coverage": "cross-env NODE_ENV=test nyc mocha --ui=tdd test/**/*.js",
"doc:serve": "vuepress dev docs-source",
"doc:build": "vuepress build docs-source"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hitchyjs/plugin-odem.git"
},
"keywords": [
"hitchy"
],
"author": "cepharum GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/hitchyjs/plugin-odem/issues"
},
"homepage": "https://hitchyjs.github.io/plugin-odem/",
"devDependencies": {
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-cepharum": "^1.0.11",
"eslint-plugin-promise": "^4.2.1",
"hitchy-server-dev-tools": "^0.2.2",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"should": "^13.2.3",
"should-http": "^0.1.1",
"vuepress": "^1.4.1"
},
"peerDependencies": {
"hitchy": "^0.6.3"
},
"dependencies": {
"file-essentials": "^0.1.1",
"functional-red-black-tree": "^1.0.1",
"object-monitor": "^0.0.8",
"promise-essentials": "^0.2.0"
}
}