-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 2.09 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
{
"name": "@windingtree/win-commons",
"version": "0.0.0-semantic-release",
"description": "A library of common components for the Win.so project",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"commit": "git-cz -S",
"changelog": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s",
"lint": "npx eslint . --ext .ts && npx prettier -c .",
"prettier": "npx prettier -w deploy src test README.md .eslintrc hardhat.config.ts",
"clean": "rm -rf dist",
"build": "yarn clean && yarn tsc -p tsconfig-build.json",
"test": "TESTING=true hardhat test",
"test:mocha": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/windingtree/win-commons.git"
},
"author": "Winding Tree Developers <dev@windingtree.com>",
"license": "GPLV3",
"bugs": {
"url": "https://github.com/windingtree/win-commons/issues"
},
"homepage": "https://github.com/windingtree/win-commons#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.5",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.22.0",
"git-cz": "^4.9.0",
"hardhat": "^2.10.1",
"hardhat-deploy": "^0.11.12",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.1.0",
"prettier": "^2.7.1",
"semantic-release": "^19.0.3",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"ethers": "^5.6.9"
}
}