-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.12 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
62
63
64
65
66
67
68
69
70
71
{
"name": "@ezs/core",
"description": "A wrapper to build Stream transformers with functional style",
"version": "3.10.10",
"author": "Nicolas Thouvenin <[email protected]>",
"bin": {
"ezs": "./bin/ezs"
},
"bugs": "https://github.com/Inist-CNRS/ezs/issues",
"dependencies": {
"app-module-path": "2.2.0",
"autocast": "0.0.4",
"cacache": "16.1.0",
"concurrent-queue": "7.0.2",
"connect": "3.7.0",
"debug": "4.3.3",
"deep-object-diff": "1.1.0",
"end-of-stream": "1.4.4",
"fdir": "6.4.2",
"filename-regex": "2.0.1",
"filtrex": "1.0.0",
"from": "0.1.7",
"global-modules": "2.0.0",
"http-shutdown": "1.2.2",
"json-buffer": "3.0.1",
"json-stringify-safe": "5.0.1",
"load-json-file": "6.2.0",
"lodash": "4.17.21",
"lru-cache": "5.1.1",
"make-dir": "^4.0.0",
"merge2": "1.4.1",
"nanoid": "2.1.8",
"nanoid-dictionary": "2.0.0",
"node-object-hash": "2.3.10",
"object-sizeof": "1.6.1",
"once": "1.4.0",
"p-wait-for": "3.1.0",
"path-exists": "4.0.0",
"picomatch": "4.0.2",
"prom-client": "14.0.0",
"readable-stream": "3.6.0",
"retimer": "^3.0.0",
"stream-write": "1.0.1",
"validatorjs": "3.18.1",
"yargs": "15.4.1"
},
"directories": {
"test": "test"
},
"gitHead": "483fb747db3ae5d72ffeb49dc29fa44fe4dbde84",
"homepage": "https://github.com/Inist-CNRS/ezs/tree/master/packages/core#readme",
"keywords": [
"stream",
"transformer"
],
"license": "MIT",
"main": "./lib/index.js",
"publishConfig": {
"access": "public"
},
"repository": "Inist-CNRS/ezs.git",
"runkitExampleFilename": "./examples/runkit-example.js",
"scripts": {
"#pretest": "npm run build",
"build": "babel --root-mode upward src --out-dir lib",
"doc": "documentation readme src/* --sort-order=alpha --shallow --markdown-toc-max-depth=2 --readme-file=../../docs/plugin-core.md --section=usage && cp ../../docs/plugin-core.md ./README.md",
"lint": "eslint --ext=.js ./test/*.js ./src/*.js ./src/statements/*.js",
"postversion": "git push && git push --tags",
"prepublish": "npm run build"
}
}