-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "k8s-gitops-cheatsheet",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/WhatTheFar/k8s-gitops-cheatsheet.git",
"author": "WhatTheFar <[email protected]>",
"license": "MIT",
"scripts": {
"start": "ts-node src/index.ts",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --passWithNoTests"
},
"dependencies": {
"@awesome-whatthefar/generator": "^0.0.13",
"@awesome-whatthefar/parser": "^0.0.13",
"super-expressive": "^1.4.0"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.19",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}