This repository has been archived by the owner on May 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.92 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
{
"name": "@rsksmart/rns",
"version": "1.9.0",
"description": "RIF Name Service library.",
"keywords": [
"rsk",
"rif",
"rns"
],
"homepage": "https://github.com/rnsdomains/rns-js#readme",
"bugs": {
"url": "https://github.com/rnsdomains/rns-js/issues"
},
"license": "MIT",
"files": [
"lib",
"types"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/rnsdomains/rns-js.git"
},
"scripts": {
"tsc-build": "npx tsc -p tsconfig.build.json",
"build": "npm run tsc-build && babel src --out-dir lib --extensions '.ts' --copy-files && npx webpack",
"test": "npm run test:local && npm run lint",
"test:local": "npx jest --coverage --runInBand --forceExit test/local/",
"test:public": "npx jest --coverage --forceExit test/public-nodes/",
"test:bundle": "npx webpack && npx jest --coverage --runInBand test/bundle/",
"lint": "npx eslint 'src/**.ts' 'src/**/**.ts' 'test/**'",
"lint:fix": "npx eslint 'src/**.ts' 'src/**/**.ts' 'test/**' --fix",
"prepublishOnly": "npm test && npm run build && cp -r lib/types/ types/"
},
"dependencies": {
"@ensdomains/address-encoder": "^0.1.7",
"@rsksmart/rns-registry": "^1.0.2",
"@rsksmart/rns-resolver": "^1.0.2",
"@rsksmart/rns-reverse": "^1.0.2",
"@rsksmart/rns-rskregistrar": "^1.2.1",
"@rsksmart/rsk3": "^0.3.4",
"bs58": "^4.0.1",
"buffer": "^5.6.0",
"content-hash": "^2.5.2",
"eth-ens-namehash": "^2.0.8",
"js-sha3": "^0.8.0",
"rskjs-util": "^1.0.3",
"web3": "^1.2.7",
"web3-eth": "^1.2.7",
"web3-eth-contract": "^1.2.7",
"web3-utils": "^1.2.7"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-typescript": "^7.9.4",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@openzeppelin/test-environment": "^0.1.3",
"@openzeppelin/test-helpers": "^0.5.5",
"@openzeppelin/upgrades": "^2.8.0",
"@rsksmart/erc677": "^1.0.2",
"@rsksmart/rns-auction-registrar": "^1.0.2",
"@types/jest": "^25.1.0",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.18.0",
"awesome-typescript-loader": "^5.2.1",
"babel-jest": "^25.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^1.7.0",
"ganache-core": "^2.10.2",
"jest": "^25.1.0",
"node-loader": "^0.6.0",
"source-map-loader": "^0.2.4",
"ts-jest": "^25.3.0",
"ts-loader": "^6.2.2",
"typescript": "^3.7.5",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}