-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.16 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
{
"name": "akinizer",
"version": "1.0.0",
"description": "Custom provisioning utility",
"main": "./src/index.js",
"scripts": {
"format": "prettier --write './**/*.js'",
"lint": "eslint './**/*.js'",
"sb:build": "docker build --tag akinizer .",
"sb:shell": "docker run -it akinizer /bin/bash",
"sb:runBase": "docker run -it ubuntu:$(cat Dockerfile | grep FROM | cut -d ':' -f 2) /bin/bash",
"sb": "docker run --volume $(pwd):/mnt/akinizer --interactive --tty akinizer /bin/bash",
"test": "jest --coverage --verbose",
"toc": "doctoc README.md",
"watch": "jest --watch"
},
"author": "Rob McGuire <[email protected]>",
"license": "ISC",
"devDependencies": {
"doctoc": "^2.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"gulp-cli": "^2.3.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"prettier-2": "npm:prettier@^2",
"uuid": "^8.3.1"
},
"dependencies": {
"command-exists": "^1.2.9",
"cosmiconfig": "^7.0.0",
"gulp": "^4.0.2",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"simple-git": "^2.21.0",
"winston": "^3.3.3"
}
}