forked from PostHog/check-package-version
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
{
"name": "check-package-version",
"version": "2.0.0",
"private": true,
"description": "Release automatically with npm package version check action by PostHog",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src/**/*",
"lint:fix": "eslint --fix src/**/*",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "yarn build && yarn format && yarn lint && yarn package && yarn test",
"prepare": "husky install"
},
"repository": "github:PostHog/check-package-version",
"keywords": [
"actions",
"node",
"setup",
"npm",
"package",
"version",
"release"
],
"author": "PostHog <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.4.0",
"package-json": "^7.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^16.4.10",
"@typescript-eslint/parser": "^4.28.5",
"@vercel/ncc": "^0.28.6",
"eslint": "^7.31.0",
"eslint-plugin-github": "^4.1.5",
"eslint-plugin-jest": "^24.3.6",
"husky": "^7.0.1",
"jest": "^26.6.3",
"jest-circus": "^27.0.6",
"js-yaml": "^4.1.0",
"lint-staged": "^11.1.1",
"prettier": "2.3.2",
"ts-jest": "^26.5.6",
"typescript": "^4.3.5"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,yml,yaml,toml,css,scss,html,xml,md}": "prettier --write",
"*.{ts,tsx}": "tsc --noEmit"
}
}