-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.46 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
{
"name": "@rather-labs/nrc-721-sdk",
"version": "0.0.19",
"description": "SDK for interacting with NFTs under NRC-721 strandard in Layer 1 of Nervos Network",
"main": "./lib/index.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "exit 0",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rather-labs/nrc-721-sdk.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"nervos",
"nft",
"ckb",
"security",
"rather-labs",
"ratherlabs"
],
"author": "Rather Labs, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/rather-labs/nrc-721-sdk/issues"
},
"homepage": "https://github.com/rather-labs/nrc-721-sdk#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*/**/*.{ts,js}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3"
},
"dependencies": {
"@nervosnetwork/ckb-sdk-core": "^0.102.3",
"axios": "^0.24.0",
"bignumber.js": "^9.0.2"
}
}