-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·99 lines (99 loc) · 2.27 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
91
92
93
94
95
96
97
98
99
{
"name": "@0xcert/client",
"version": "1.0.2",
"description": "0xcert API client.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npm run clean && npx tsc",
"clean": "rm -Rf ./dist",
"lint": "npx tslint '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/framework.git"
},
"bugs": {
"url": "https://github.com/0xcert/framework/issues"
},
"homepage": "https://github.com/0xcert/framework#readme",
"keywords": [
"0xcert",
"framework",
"protocol",
"asset",
"value",
"values",
"currency",
"token",
"non-fungible",
"fungible",
"erc-721",
"erc-20",
"blockchain",
"javascript",
"typescript",
"nodejs",
"vuejs",
"nuxtjs",
"npm",
"libraries",
"smart-contract",
"ethereum",
"zxc"
],
"license": "MIT",
"devDependencies": {
"@0xcert/ethereum-http-provider": "2.0.2",
"@0xcert/utils": "2.0.2",
"@0xcert/ethereum-sandbox": "2.0.2",
"@0xcert/conventions": "2.0.2",
"@0xcert/ethereum-asset-ledger": "2.0.2",
"@0xcert/ethereum-bitski-backend-provider": "2.0.2",
"@0xcert/ethereum-gateway": "2.0.2",
"@0xcert/ethereum-metamask-provider": "2.0.2",
"@0xcert/ethereum-value-ledger": "2.0.2",
"@hayspec/cli": "0.10.0",
"@hayspec/spec": "0.10.0",
"@specron/cli": "0.17.1",
"@specron/spec": "0.17.1",
"ganache-core": "2.8.0",
"solc": "0.6.1",
"ts-node": "8.10.1",
"typescript": "3.8.3",
"@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",
"web3": "1.2.7"
},
"dependencies": {
"@0xcert/cert": "2.0.2",
"@0xcert/ethereum-gateway": "2.0.2",
"bignumber.js": "9.0.0",
"node-fetch": "2.6.0"
}
}