-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.42 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
{
"name": "prettytables",
"version": "1.1.5",
"description": "Format tabular data with pretty styles.",
"main": "__init__.py",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"getversion": "npm -s run env echo '$npm_package_version'",
"install-local-linux": "pip3 uninstall prettyTables -y && python3 setup.py bdist_wheel && VERSION=`npm -s run env echo '$npm_package_version'` && pip3 install dist/prettyTables-$VERSION-py3-none-any.whl",
"install-local-windows": "",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kyostenas/prettyTables.git"
},
"author": "Kyostenas",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kyostenas/prettyTables/issues"
},
"homepage": "https://github.com/Kyostenas/prettyTables#readme",
"config": {
"commitzen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"commitizen": "^4.2.4",
"conventional-github-releaser": "^3.1.5",
"eslint": "^8.12.0",
"git-authors-cli": "^1.0.39",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"standard-version": "^9.3.2"
}
}