-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2 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
{
"name": "@peerigon/typescript-exercises-tools",
"version": "0.0.0-released-semantically",
"description": "Tools for writing and validating TypeScript exercises",
"repository": "https://github.com/peerigon/typescript-exercises-tools",
"author": "Peerigon GmbH",
"license": "Unlicense",
"main": "./dist/main.js",
"exports": {
".": "./dist/main.js",
"./tests": "./dist/tests.js"
},
"keywords": [
"typescript",
"language",
"service",
"server",
"validate",
"validation",
"test",
"types",
"exercise"
],
"files": [
"dist"
],
"scripts": {
"build": "run-s build:clean build:tsc",
"build:clean": "rimraf dist",
"build:tsc": "tsc -p ./tsconfig.build.json",
"build:tsc:watch": "npm run build:tsc -- -w",
"test": "run-p test:suite test:lint",
"test:suite": "jest",
"test:lint": "eslint --max-warnings 0 --cache --ext js,jsx,cjs,mjs,ts,tsx --ignore-path .gitignore --ignore-pattern src/typescript.ts .",
"prepublishOnly": "run-p build",
"release": "semantic-release",
"prepare": "husky install"
},
"peerDependencies": {
"typescript": "^5.5.2"
},
"devDependencies": {
"@peerigon/typescript-exercises-tools": "file:/.",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.8",
"eslint": "^8.56.0",
"eslint-config-peerigon": "^39.0.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"nodemon": "^3.1.4",
"npm-run-all": "^4.1.5",
"pin-github-action": "^1.9.1",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"semantic-release": "^24.0.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --cache --fix"
],
"*.{css,md}": [
"prettier --write"
],
".github/workflows/*.{yml,yaml}": [
"pin-github-action --allow-empty",
"prettier --write"
]
}
}