-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.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
{
"name": "eosjs-account-name",
"version": "2.3.0",
"description": "eos name in string to uint64 and vice versa",
"main": "dist/index.js",
"files": [
"dist",
"lib"
],
"types": "dist/index.d.ts",
"author": "[email protected]",
"license": "MIT",
"repository": "https://github.com/manh-vv/eosjs-name.git",
"keywords": [
"eosio account name",
"eosio name",
"eos name",
"account_name",
"symbol name"
],
"dependencies": {},
"devDependencies": {
"husky": "^4.3.0",
"jest": "^26.6.1",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"standard-version": "^9.0.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
},
"scripts": {
"build-tsc": "yarn tsc",
"build": "yarn build-tsc && yarn webpack",
"prepare": "yarn build",
"release": "standard-version",
"pretest": "yarn build-tsc",
"test": "jest"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}