-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.28 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@johanneslumpe/versionguard",
"version": "0.3.0",
"description": "",
"main": "index.js",
"bin": {
"versionguard": "./lib/cli/index.js"
},
"scripts": {
"test": "jest",
"lint": "eslint \"src/**/*.ts\" && eslint \"test/**/*.ts\"",
"typecheck": "tsc -p ./tsconfig.build.json --noEmit",
"format": "prettier --write \"src/**/*.ts\"",
"build": "rm -rf ./lib && tsc -p ./tsconfig.build.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"prerelease": "npm run lint && npm run test",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run format",
"pre-push": "npm test"
}
},
"files": [
"/lib"
],
"keywords": [],
"author": "Johannes Lumpe",
"bugs": {
"url": "https://github.com/johanneslumpe/versionguard/issues"
},
"homepage": "https://github.com/johanneslumpe/versionguard",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.2",
"cli-table3": "^0.5.1",
"find-up": "^4.0.0",
"fp-ts": "^1.19.1",
"fp-ts-contrib": "^0.1.1",
"humanize-duration": "^3.18.0",
"inquirer": "^6.3.1",
"json5": "^2.1.0",
"lodash": "^4.17.11",
"log-symbols": "^3.0.0",
"pluralize": "^8.0.0",
"semver": "^6.1.1",
"yargs": "^13.2.4"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/humanize-duration": "^3.18.0",
"@types/inquirer": "^6.0.3",
"@types/jest": "^24.0.13",
"@types/json5": "0.0.30",
"@types/lodash": "^4.14.134",
"@types/node": "^12.0.4",
"@types/pluralize": "0.0.29",
"@types/semver": "^6.0.0",
"@types/std-mocks": "^1.0.0",
"@types/strip-ansi": "^5.2.1",
"@types/yargs": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"date-fns": "^1.29.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"glob": "^7.1.4",
"husky": "^2.4.0",
"jest": "^24.8.0",
"mock-stdin": "^0.3.1",
"prettier": "^1.18.2",
"standard-version": "^8.0.1",
"std-mocks": "^1.0.1",
"strip-ansi": "^5.2.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.2.0",
"typescript": "^3.5.1"
}
}