-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.93 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
{
"name": "show-my-stuff",
"version": "1.0.2",
"description": "CLI tool that verifies npm package version",
"keywords": [
"cli"
],
"homepage": "https://github.com/rafalmaciejewski/show-my-stuff#readme",
"bugs": {
"url": "https://github.com/rafalmaciejewski/show-my-stuff/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rafalmaciejewski/show-my-stuff.git"
},
"license": "MIT",
"author": "@rafalmaciejewski",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": "bin/index.js",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.build.json",
"clean": "rimraf lib",
"format": "prettier --write \"src/**/*.ts\" \"bin/**/*.js\"",
"lint": "eslint \"{src,bin}/**/*.{ts,js}\" --fix",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"release": "semantic-release",
"start": "npm run build -- --watch",
"test": "jest",
"test:cov": "npm run test -- --coverage"
},
"dependencies": {
"chalk": "4.1.2",
"commander": "9.4.0",
"date-fns": "2.29.1",
"lodash.merge": "4.6.2",
"ms": "2.1.3",
"simple-git": "3.12.0"
},
"devDependencies": {
"@getresponse/eslint-config": "7.1.6",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.5",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/chalk": "2.2.0",
"@types/jest": "28.1.6",
"@types/lodash.merge": "4.6.7",
"@types/mock-fs": "4.13.1",
"@types/ms": "0.7.31",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"husky": "8.0.1",
"jest": "28.1.3",
"lint-staged": "13.0.3",
"mock-fs": "5.1.4",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"semantic-release": "19.0.3",
"ts-jest": "28.0.7",
"typescript": "4.7.4"
}
}