-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
{
"name": "diamond-diff",
"version": "1.1.0",
"description": "Diamond (EIP-2535) tool to compare facets.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"check-updates": "npx npm-check-updates",
"check-updates:minor": "npx npm-check-updates --target minor",
"check-updates:patch": "npx npm-check-updates --target patch",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ubinatus/diamond-diff.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"typescript",
"npm",
"template",
"ts",
"diamond",
"multi-facet proxy",
"eip-2535"
],
"author": "JA (https://twitter.com/ubinatus)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ubinatus/diamond-diff/issues"
},
"homepage": "https://github.com/ubinatus/diamond-diff#readme",
"devDependencies": {
"@ethersproject/address": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.9",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"ansi-regex": ">=6.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}