-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.54 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.54 KB
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
{
"name": "@zeroio/type-definitions",
"description": "polkadot js type defitinitons for zero network",
"version": "0.0.14",
"license": "BSD-4-Clause",
"repository": "https://github.com/playzero/zero-types",
"main": "./lib/index.js",
"files": [
"/lib"
],
"scripts": {
"build": "tsc",
"format": "prettier --write --check 'src/**/*.{js,json,jsx,ts,tsx}'",
"format:verify": "prettier --check 'src/**/*.{js,json,jsx,ts,tsx}'",
"postversion": "git push --follow-tags",
"release": "yarn build && yarn standard-version"
},
"publishConfig": {
"access": "public"
},
"bugs": "https://github.com/playzero/zero-type-definitions/issues",
"homepage": "https://github.com/playzero/zero-types#readme",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@polkadot/types": "^5.2.1",
"commitizen": "^4.2.4",
"cz-customizable": "^6.3.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"standard-version": "^9.3.1",
"typescript": "^4.3.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@picgo/bump-version/.cz-config.js"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn format:verify"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"useTabs": true,
"semi": false,
"singleQuote": true,
"printWidth": 160,
"bracketSpacing": true
}
}