-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.32 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
{
"name": "lsp2-parse",
"version": "0.1.0",
"description": "Parse LSP-2 ERC725YJSONSchema key hashes",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest",
"docs:generate": "typedoc --options typedoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hugoo/lsp2-parse.git"
},
"keywords": [
"erc725"
],
"authors": [
{
"name": "Hugo Masclet",
"email": "[email protected]",
"url": "https://github.com/Hugoo"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Hugoo/lsp2-parse/issues"
},
"homepage": "https://github.com/Hugoo/lsp2-parse#readme",
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.2",
"prettier": "^2.5.0",
"ts-jest": "^27.0.7",
"typedoc": "^0.22.10",
"typedoc-plugin-markdown": "^3.11.7",
"typescript": "^4.5.2"
},
"files": [
"build/**/*"
],
"dependencies": {
"@erc725/erc725.js": "^0.8.0"
}
}