-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.4 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
{
"name": "codeclimate-example-typescript",
"version": "0.0.1-SNAPSHOT",
"private": true,
"description": "A quick example of integrating Code Climate with a repo",
"keywords": [
"codeclimate",
"coverage",
"example"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xolvio/codeclimate-example-typescript.git",
"path": "."
},
"author": "Mateusz Kazimierczuk",
"main": "./dist/answer.js",
"directories": {
"lib": "./dist"
},
"scripts": {
"prebuild": "npm run clean:compile",
"build": "npm run compile",
"clean": "run-p clean:*",
"clean:compile": "rimraf ./dist/",
"clean:coverage": "rimraf ./coverage/",
"compile": "tsc --project ./tsconfig.base.json",
"precoverage": "npm run clean:coverage",
"coverage": "npm run test -- --coverage",
"licenses": "jsgl --local .",
"lint": "run-p lint:*",
"lint:action": "node-actionlint",
"lint:eslint": "eslint . --cache --format pretty --ext .js,.ts",
"lint:prettier": "prettier . --check",
"lint:typecheck": "npm run compile -- --noEmit",
"fix": "run-s fix:*",
"fix:eslint": "eslint . --fix --quiet --cache --ext .js,.ts",
"fix:prettier": "prettier . --write",
"prepare": "husky install",
"test": "jest",
"pre-commit": "lint-staged --quiet --allow-empty",
"watch": "npm run test -- --watch"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@tsconfig/node16-strictest": "^1.0.0",
"@types/eslint": "^8.4.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/prettier": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-jest": "^26.1.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"js-green-licenses": "^3.0.1",
"lint-staged": "^12.3.4",
"node-actionlint": "^1.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"prettier-plugin-packagejson": "^2.2.15",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typescript": "next"
}
}