-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.71 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.71 KB
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
{
"name": "@0xcert/ens",
"version": "0.1.1",
"description": "0xcert ENS module for ens domain management on the Ethereum blockchain.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npm run clean && npx tsc",
"clean": "rm -Rf ./dist",
"lint": "npx eslint 'src/**/*.ts?(x)'",
"test": "npm run lint && npx nyc npx hayspec test"
},
"hayspec": {
"require": [
"ts-node/register"
],
"match": [
"./src/tests/**/*.test.ts"
]
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"exclude": [
"src/tests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xcert/ens.git"
},
"keywords": [
"0xcert",
"framework",
"blockchain",
"ens",
"ethereum",
"zxc",
"domain"
],
"author": "0xcert",
"license": "MIT",
"bugs": {
"url": "https://github.com/0xcert/ens/issues"
},
"homepage": "https://github.com/0xcert/ens#readme",
"devDependencies": {
"@hayspec/cli": "0.10.0",
"@hayspec/spec": "0.10.0",
"@0xcert/ethereum-http-provider": "2.0.2",
"nyc": "15.0.1",
"ts-node": "8.10.1",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsdoc": "25.4.2",
"eslint-plugin-unicorn": "20.0.0",
"eslint": "7.0.0",
"typescript": "3.8.3",
"@types/node": "^14.0.1"
},
"dependencies": {
"@0xcert/ethereum-generic-provider": "2.0.2",
"@0xcert/ethereum-utils": "2.0.2",
"@0xcert/scaffold": "2.0.2",
"@0xcert/utils": "2.0.2",
"eth-ens-namehash": "^2.0.8"
}
}