-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.35 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
{
"name": "@knuth/bch",
"version": "2.6.0",
"description": "Bitcoin Cash development platform for Javascript and Typescript applications",
"main": "src/kth.js",
"scripts": {
"test": "jest --runInBand --verbose",
"lint": "eslint **/*.js",
"lint:fix": "npm run lint -- --fix",
"lint:github-action": "node ./node_modules/eslint/bin/eslint . --ignore-path .gitignore"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/k-nuth/js-api.git"
},
"keywords": [
"bitcoin",
"cash",
"bch",
"money",
"knuth",
"kth"
],
"author": "Knuth Project developers (https://kth.cash)",
"license": "MIT",
"bugs": {
"url": "https://github.com/k-nuth/kth/issues"
},
"homepage": "https://github.com/k-nuth/js-api#readme",
"dependencies": {
"bluebird": "^3.7.2",
"@knuth/bch-native": "^1.7.0",
"memoizee": "^0.4.14"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.2.1",
"prettier": "^2.2.1"
},
"directories": {
"example": "examples",
"test": "test"
}
}