This repository has been archived by the owner on Oct 1, 2021. It is now read-only.
forked from pbca26/komodo-rpc-lib
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
98 lines (98 loc) · 3.29 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
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "kmd-rpc",
"version": "0.5.0",
"description": "komodo rpc library",
"license": "MIT",
"repository": "particle4dev/komodo-rpc-lib",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "cross-env DEBUG=kmdrpc:* ./node_modules/.bin/babel-node examples/app.js",
"devtest": "cross-env DEBUG=kmdrpc:* ./node_modules/.bin/babel-node",
"devkmdice": "npm run devtest -- examples/start-kmdice.js",
"test": "cross-env DEBUG=kmdrpc:* jest",
"coverage": "npm test -- --coverage",
"test-coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"flow": "flow check",
"docs": "./node_modules/.bin/documentation build -f md src > docs/NODE_API.md",
"postdocs": "git add README.md",
"clean": "rimraf dist coverage",
"flowbuild": "flow-copy-source src dist",
"prebuild": "npm run docs && npm run clean && npm run flowbuild",
"build": "babel src -d dist",
"preversion": "npm run lint && npm test && npm run build",
"version": "standard-changelog && git add CHANGELOG.md",
"postpublish": "git push origin master --follow-tags",
"update-authors": "./scripts/update-authors"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"komodo",
"rpc",
"library"
],
"dependencies": {
"debug": "^4.1.0",
"split2": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.1.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"documentation": "^9.1.1",
"eslint": "^5.11.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-flowtype-errors": "^3.5.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.1",
"flow-bin": "^0.89.0",
"flow-copy-source": "^2.0.2",
"husky": "^1.3.1",
"jest-cli": "^23.6.0",
"lint-staged": "^8.1.0",
"opn-cli": "^4.0.0",
"prettier": "^1.15.3",
"rimraf": "^2.6.3",
"standard-changelog": "^2.0.6"
}
}