forked from SergiySW/RaiBlocksJS
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.04 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
{
"name": "raiblocks-js",
"version": "0.5.0",
"description": "Raiblocks RPC client",
"main": "dist/build.js",
"scripts": {
"build": "rm -rf dist && webpack",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"lint": "eslint src",
"precommit": "lint-staged",
"prepush": "yarn test",
"prepublish": "yarn build",
"test": "jest --coverage",
"test:ci": "jest --coverage --testPathIgnorePatterns=proofOfWork --collectCoverageFrom=src/**/*.js --collectCoverageFrom=!**/proofOfWork.js --collectCoverageFrom=!**/powWorker.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orrybaram/RaiBlocksJS.git"
},
"keywords": [
"Raiblocks",
"crypto",
"rpc"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/orrybaram/RaiBlocksJS/issues"
},
"homepage": "https://github.com/orrybaram/RaiBlocksJS#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"babel-watch": "^2.0.7",
"coveralls": "^3.0.0",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"husky": "^0.14.3",
"jest": "^22.0.4",
"lint-staged": "^6.0.0",
"nock": "^9.1.5",
"webpack": "^3.10.0"
},
"dependencies": {
"axios": "^0.17.1",
"bignumber.js": "^5.0.0",
"blakejs": "^1.1.0",
"cpus": "^1.0.0",
"get-random-values": "^1.2.0",
"tweetnacl": "https://github.com/jaimehgb/tweetnacl-js",
"workerpool": "^2.3.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"jest": {
"testURL": "http://xrb.wallet.test",
"testPathIgnorePatterns": [
"<rootDir>/dist"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}