-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 1.95 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
{
"name": "katana.sdk",
"version": "2.1.0",
"description": "KATANA SDK for Node.js v6",
"main": "index.js",
"scripts": {
"test": "npm-run-all --serial coverage lint",
"test:unit": "mocha sdk/**/*.test.js",
"test:dev": "mocha --watch sdk/**/*.test.js",
"coverage": "istanbul cover _mocha --report lcovonly -- sdk/**/*.test.js",
"coverage-report:coveralls": "cat ./coverage/lcov.info | coveralls",
"coverage:check": "istanbul check-coverage",
"coverage-clean": "rimraf ./coverage",
"lint": "eslint *.js sdk/**/*.js",
"predocs": "rimraf docs",
"docs": "jsdoc sdk/*.js -d docs"
},
"repository": {
"type": "git",
"url": "git@github.com:kusanagi/katana-sdk-node.git"
},
"keywords": [
"katana",
"sdk",
"node"
],
"author": "Orestes Carracedo (orestes.carracedo@kusanagi.io)",
"contributors": [
{
"name": "Denis Ciccale",
"url": "https://twitter.com/dciccale"
}
],
"maintainers": [
{
"name": "Orestes Carracedo",
"email": "orestes.carracedo@kusanagi.io",
"url": "https://orestes.io"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kusanagi/katana-sdk-node/issues"
},
"homepage": "http://kusanagi.io/",
"private": false,
"dependencies": {
"immutable": "^3.8.2",
"lodash": "^4.17.5",
"msgpack": "^1.0.2",
"semver": "^5.5.0",
"sync-request": "^3.0.1",
"yargs": "^6.3.0",
"zeromq": "^4.3.0"
},
"devDependencies": {
"chai": "3.5.0",
"commitizen": "^2.9.6",
"coveralls": "2.12.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^3.4.0",
"husky": "^0.13.2",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"mocha": "^3.5.3",
"mocha-lcov-reporter": "1.3.0",
"np": "^2.20.1",
"npm-run-all": "4.0.2",
"rimraf": "^2.6.2",
"sinon": "1.17.7",
"sinon-chai": "2.8.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}