This repository has been archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
{
"name": "cashlib",
"version": "0.0.15",
"description": "Experimental Bitcoin Cash library",
"homepage": "https://github.com/proehlen/cashlib#README.md",
"author": "Peter Roehlen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/proehlen/cashlib.git"
},
"main": "lib/index.js",
"files": [
"lib"
],
"keywords": [
"bitcoin",
"cash",
"bch",
"library",
"nodejs"
],
"scripts": {
"clean": "rimraf lib",
"docs": "copyfiles package.json README.md docs && documentation build src/** -g -f json -o docs/docs.json",
"eslint": "eslint src",
"flow": "flow",
"pretest": "npm run build",
"test": "jest",
"flowbuild": "flow-copy-source src lib",
"prebuild": "npm run clean && npm run flowbuild ",
"build": "babel --plugins transform-flow-strip-types src/ -d lib/ --copy-files",
"prepublish": "npm run build && npm run docs"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"copyfiles": "^2.1.0",
"documentation": "^8.1.2",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.80.0",
"flow-copy-source": "^2.0.2",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"base-x": "^3.0.4",
"big-integer": "^1.6.36",
"stringfu": "0.0.4"
}
}