-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.33 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"name": "mixnode-node-sdk",
"version": "1.0.0",
"description": "Mixnode Node.js SDK",
"main": "src/index.js",
"scripts": {
"commit": "git-cz",
"test": "jasmine \"**/*.spec.js\"",
"coverage": "jest --config jest.json --coverage",
"lint": "eslint \"**/*.js\"",
"lint-fix": "eslint --fix \"**/*.js\"",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"repository": {
"type": "git",
"url": "https://github.com/Mixnode/mixnode-node-sdk"
},
"bugs": {
"url": "https://github.com/Mixnode/mixnode-node-sdk/issues"
},
"license": "Apache-2.0",
"dependencies": {
"request": "^2.87.0",
"request-promise": "^4.2.2",
"inherits": "^2.0.1"
},
"keywords": [
"Mixnode",
"mixnode-node-sdk"
],
"devDependencies": {
"commitizen": "3.0.7",
"cz-conventional-changelog": "2.1.0",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-react": "^7.12.4",
"jasmine": "^2.6.0",
"mocha": "^5.2.0",
"nock": "^10.0.6",
"jest": "24.7.1",
"semantic-release": "^15.13.3",
"travis-deploy-once": "5.0.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}