forked from hadenlabs/docker-kali-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@hadenlabs/docker-kali-linux",
"version": "0.2.0",
"description": "docker-kali-linux",
"author": "Luis Mayta <[email protected]>",
"license": "LGPL-3.0",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsc -p ./",
"clean": "rimraf -rf dist",
"clean:all": "yarn clean:cache && yarn clean:build:all && yarn clean node_modules",
"clean:build": "yarn clean dist .next out .serverless_nextjs",
"clean:build:all": "yarn clean && yarn clean:build && yarn clean:build:test",
"clean:build:test": "yarn clean ./coverage",
"clean:cache": "yarn clean ./node_modules/.cache",
"plop": "cross-env TS_NODE_PROJECT='./provision/generators/plop/ts-node.tsconfig.json' plop --plopfile provision/generators/plop/index.ts",
"lint": "eslint --config=.github/linters/.eslintrc.js --ignore-path=.github/linters/.eslintignore ./ --ext .js,.jsx,.mjs,.d.ts,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"lint:less": "stylelint --config=.github/linters/.stylintrc --syntax less **/*.less",
"lint:less:fix": "yarn lint:less --fix",
"ncu": "ncu -u --target minor",
"ncu:patch": "ncu -u --target patch",
"prebuild": "mkdirp build && yarn run clean:build:all",
"prettier": "prettier --config=.github/linters/prettier.config.js --ignore-path=.github/linters/.prettierignore --list-different",
"prettier:fix": "yarn prettier:lint --write=true",
"prettier:lint": "yarn prettier '**/*.{js?(on),ts?(x),scss,md,y?(a)ml,gql,graphql?(s),less,mjml}' --write=false"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hadenlabs/docker-kali-linux.git"
},
"keywords": [
"docker-kali-linux",
"git",
"hadenlabs"
],
"bugs": {
"url": "https://github.com/hadenlabs/docker-kali-linux/issues"
},
"homepage": "https://github.com/hadenlabs/docker-kali-linux#readme",
"dependencies": {},
"devDependencies": {
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"@types/handlebars-helpers": "^0.5.3",
"cross-env": "^7.0.3",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.1",
"handlebars-helpers": "^0.10.0",
"node-plop": "^0.26.3",
"plop": "^2.7.6",
"prettier": "^2.3.2",
"prettier-eslint": "^12.0.0",
"slugify": "^1.5.3",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"prettier": "./.github/linters/prettier.config.js"
}