-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.64 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
{
"name": "boilerplate_kata_ts",
"version": "0.0.1",
"description": "Template for katas in typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Iván Córdoba Donet",
"license": "MIT",
"scripts": {
"build": "rm -rf ./dist && tsc",
"eslint:check": "npx eslint './src/**'",
"eslint:fix": "npx eslint './src/**' --fix",
"test:unit": "npx jest test/unit",
"test:unit:coverage": "npx jest test/unit --coverage",
"test:unit:watch": "npx jest test/unit --watchAll",
"test:unit:watch:coverage": "npx jest test/unit --watchAll --coverage",
"test:integration": "npx jest test/integration",
"test:integration:coverage": "npx jest test/integration --coverage",
"test:integration:watch": "npx jest test/integration --watchAll",
"test:integration:watch:coverage": "npx jest test/integration --watchAll --coverage",
"test:e2e": "npx jest test/e2e",
"test:e2e:coverage": "npx jest test/e2e --coverage",
"test:e2e:watch": "npx jest test/e2e --watchAll",
"test:e2e:watch:coverage": "npx jest test/e2e --watchAll --coverage",
"test:all": "npx jest",
"test:all:coverage": "npx jest --coverage",
"test:all:watch": "npx jest --watchAll",
"test:all:watch:coverage": "npx jest --watchAll --coverage"
},
"files": [
"dist"
],
"engines": {
"node": ">= 14.0.0"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}