forked from microsoft/etcd3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.45 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "etcd3",
"version": "0.2.11",
"description": "Node client for etcd3",
"main": "lib/src/index.js",
"typings": "lib/src/index.d.ts",
"scripts": {
"test": "npm-run-all --parallel test:lint test:unit",
"test:unit": "mocha",
"test:cover": "nyc mocha",
"test:lint": "tslint --project tsconfig.json \"{src,test}/**/*.ts\"",
"build:proto": "node ./bin/update-proto ./proto && node bin/generate-methods.js ./proto/rpc.proto > src/rpc.ts && npm run fmt:ts",
"build:doc": "rm -rf docs && typedoc --gitRevision `git describe --abbrev=0 --tags` --exclude \"**/test/*\" --excludePrivate --out ./docs ./src/index.ts && node bin/tame-typedoc",
"build:ts": "tsc && cp -R proto lib",
"fmt": "npm-run-all --parallel fmt:ts fmt:js && npm run -s test:lint -- --fix",
"fmt:js": "prettier --single-quote --trailing-comma es5 --write --print-width 100 \"bin/*.js\"",
"fmt:ts": "prettier --single-quote --trailing-comma all --parser typescript --print-width 100 --write \"{src,test}/**/*.ts\"",
"prepublish": "npm run -s build:ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixer/etcd3.git"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"keywords": [
"etcd3",
"etcd",
"node",
"client",
"protobuf",
"proto"
],
"author": "Connor Peet <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixer/etcd3/issues"
},
"homepage": "https://github.com/mixer/etcd3#readme",
"devDependencies": {
"@types/bignumber.js": "^4.0.3",
"@types/chai": "^3.4.35",
"@types/chai-as-promised": "^7.1.0",
"@types/chai-subset": "^1.3.0",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"@types/sinon": "^2.1.2",
"chai": "^3.5.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.5.0",
"change-case": "^3.0.1",
"lodash": "^4.17.4",
"mocha": "^3.2.0",
"node-fetch": "^1.6.3",
"npm-run-all": "^4.0.2",
"nyc": "^11.2.1",
"prettier": "^1.4.4",
"protobufjs": "^6.7.3",
"sinon": "^2.1.0",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"tslint-microsoft-contrib": "5.0.1",
"typedoc": "^0.7.1",
"typescript": "^2.7.1"
},
"dependencies": {
"bignumber.js": "^4.1.0",
"grpc": "^1.10.1"
}
}