forked from alexguan/node-zookeeper-client
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.91 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.91 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
{
"name": "node-zookeeper-client",
"version": "0.2.3",
"description": "A pure Javascript ZooKeeper client for Node.js.",
"author": "Alex Guan <alex.guan@gmail.com>",
"main": "index.js",
"keywords": [
"zookeeper",
"client",
"pure",
"javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/alexguan/node-zookeeper-client"
},
"scripts": {
"test": "npm run lint -- --fix && npm run test-before && npm run test-local && npm run test-after",
"test-before": "docker-compose up -d && npm run build",
"test-local": "ava test/** --serial",
"test-after": "docker-compose down && npm run clean",
"test-cov": "nyc ava test/* --serial",
"cov": "npm run test-before && npm run test-cov && npm run test-after && nyc report --reporter=html && rm -rf .nyc_output",
"report": "nyc report --reporter=html",
"lint": "eslint .",
"build": "tsc --build tsconfig.json && cp index.ts node_modules && echo \"\nimport './lib/jute/jute';\" >> index.ts",
"clean": "tsc --build tsconfig.json --clean && mv node_modules/index.ts index.ts",
"prepublish": "npm run build",
"postpublish": "npm run clean"
},
"engines": {
"node": ">=8.9.0"
},
"dependencies": {
"lodash": "^4.17.11",
"tslib": "^1.9.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/alexguan/node-zookeeper-client/raw/master/LICENSE"
}
],
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/lodash": "^4.14.149",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"ava": "^2.4.0",
"eslint": "^6.0.1",
"eslint-config-egg": "^6.0.0",
"nyc": "^14.1.1",
"rewire": "^4.0.1",
"ts-node": "^8.6.2",
"typescript": "^3.5.2"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}