-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "elarian",
"version": "0.5.6",
"description": "Elarian JavaScript SDK",
"main": "index.js",
"scripts": {
"pretest": "npm run lint",
"posttest": "npm run build",
"test": "DEBUG=1 nyc mocha ./test -t 10000 --slow 500 --exit",
"lint": "eslint .",
"build": "rm -rf docs/ && npm run build:docs",
"build:types": "jsdoc -t node_modules/tsd-jsdoc/dist -c .jsdoc -r lib/ && mv docs/types.d.ts ./ ",
"build:docs": "jsdoc -c .jsdoc -R README.md -r lib/ && jsdoc2md -c .jsdoc --files lib/** > docs/README.md",
"prepublish": "npm run build"
},
"author": "Salama Balekage<[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ElarianLtd/javascript-sdk"
},
"types": "./types.d.ts",
"keywords": [
"elarian"
],
"engines": {
"node": ">=12"
},
"dependencies": {
"@grpc/grpc-js": "^1.9.12",
"@grpc/proto-loader": "^0.7.10",
"google-protobuf": "^3.21.2",
"validate.js": "^0.13.1"
},
"devDependencies": {
"@alenon/grpc-mock-server": "^3.1.8",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-security": "^1.7.1",
"ink-docstrap": "^1.3.2",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.0",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"node-fetch": ">=3.3.2",
"nyc": "^15.1.0",
"promise-parallel-throttle": "^3.3.0",
"should": "^13.2.3",
"signale": "^1.4.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}