-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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
{
"name": "guet",
"version": "4.0.2",
"description": "",
"main": "index.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/chiptopher/guet"
},
"scripts": {
"build": "rm -rf ./lib && tsc",
"lint": "eslint . --ext .ts,.tsx,.js,json",
"lint:fix": "eslint . --ext .ts,.tsx,.js,json --fix",
"test": "jest src",
"test:e2e": "npm run docker:build && node e2e/index.js",
"test:run": "npm run build && node ./lib/index.js",
"docker:build": "docker build . -t guettest:0.0.1",
"docker:run": "npm run docker:build && docker run --rm -e \"TERM=xterm-256color\" -t -i guettest:0.0.1 /bin/bash",
"prepare": "husky install"
},
"bin": {
"guet": "./lib/index.js"
},
"author": "Christopher M. Boyer",
"license": "MIT",
"devDependencies": {
"@types/dockerode": "^3.3.9",
"@types/jest": "^28.1.6",
"@types/luxon": "^3.0.0",
"@types/node": "^18.6.1",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"dockerode": "^3.3.3",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"typescript-eslint-parser": "^22.0.0"
},
"dependencies": {
"colors": "^1.4.0",
"dotenv": "^16.0.1",
"luxon": "^3.0.1"
}
}