forked from NodeSecure/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 2.88 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "nsecure",
"version": "0.5.0",
"description": "Node.js security CLI",
"main": "./index.js",
"bin": {
"node-secure": "./bin/index.js",
"nsecure": "./bin/index.js"
},
"engines": {
"node": ">=12.12.0"
},
"scripts": {
"eslint": "eslint bin src test",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "pkg-ok",
"build": "webpack",
"test": "npm run test-only && npm run eslint",
"test-only": "jest --coverage"
},
"files": [
"bin",
"dist",
"src",
"views",
"flags",
"i18n",
"index.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ES-Community/node-secure.git"
},
"keywords": [],
"author": "ES Community",
"license": "MIT",
"bugs": {
"url": "https://github.com/ES-Community/node-secure/issues"
},
"husky": {
"hooks": {
"pre-push": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"setupFilesAfterEnv": [
"./jest.setup.js"
],
"collectCoverageFrom": [
"**/src/**/*.js"
],
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/test/fixtures/"
]
},
"homepage": "https://github.com/ES-Community/node-secure#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@slimio/eslint-config": "^4.0.0",
"@types/node": "^13.7.2",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^6.0.0",
"get-folder-size": "^2.0.1",
"gravatar-url": "^3.1.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"pkg-ok": "^2.3.1",
"pretty-bytes": "^5.3.0",
"style-loader": "^1.1.3",
"vis": "^4.21.0-EOL",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@polka/send-type": "^0.5.2",
"@slimio/async-cli-spinner": "^0.5.2",
"@slimio/github": "^0.5.0",
"@slimio/is": "^1.5.1",
"@slimio/lock": "^0.5.0",
"@slimio/npm-registry": "^0.5.0",
"cacache": "^15.0.0",
"combine-async-iterators": "^1.1.2",
"dotenv": "^8.2.0",
"estree-walker": "^2.0.1",
"filenamify": "^4.1.0",
"get-port": "^5.1.1",
"httpie": "^1.1.2",
"is-minified-code": "^2.0.0",
"itertools": "^1.6.0",
"js-x-ray": "^1.1.1",
"kleur": "^3.0.3",
"lodash.clonedeep": "^4.5.0",
"lodash.difference": "^4.5.0",
"lodash.get": "^4.4.2",
"make-promises-safe": "^5.1.0",
"meriyah": "^1.9.9",
"ms": "^2.1.2",
"ntlp": "^1.1.2",
"open": "^7.0.3",
"pacote": "^11.1.4",
"polka": "^0.5.2",
"qoa": "^0.2.0",
"sade": "^1.7.3",
"safe-regex": "^2.1.1",
"semver": "^7.1.3",
"sirv": "^0.4.2",
"unique-slug": "^2.0.2",
"zup": "0.0.1"
}
}