-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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
{
"name": "@datawallet/pls",
"version": "1.1.1",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/DataWallet/pls",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.js",
"test:watch": "jest --watch",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tslint-tsconfig.json",
"release": "yarn build && yarn version --no-commit-hooks"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "./scripts/check-commit-msg -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.ts": [
"yarn lint",
"prettier --single-quote --write",
"git add"
],
"*.json": [
"prettier --double-quote --write",
"git add"
]
},
"dependencies": {
"web3-utils": "^1.2.6"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/jest": "^25.2.1",
"awesome-typescript-loader": "^5.2.1",
"chalk": "^4.0.0",
"conventional-commits-parser": "^3.0.8",
"esm": "^3.2.25",
"husky": "^4.2.5",
"jest": "^25.4.0",
"lint-staged": "^10.1.7",
"prettier": "^2.0.5",
"semantic-release": "^17.0.7",
"source-map-loader": "^0.2.4",
"ts-jest": "^25.4.0",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"files": [
"lib/**/*"
]
}