-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
71 lines (71 loc) · 2.12 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
{
"name": "@doyensec/electronegativity",
"version": "1.10.3",
"description": "Electronegativity is a tool to identify misconfigurations and security anti-patterns in Electron applications",
"main": "dist/runner.js",
"scripts": {
"build": "rimraf dist/ && babel ./src --out-dir dist/ --source-maps && cp -R src/locales/*.json dist/locales/",
"test": "npm run build && mocha --require babel-core/register"
},
"bin": {
"electronegativity": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doyensec/electronegativity.git"
},
"author": "[email protected]",
"license": "Apache-2.0",
"i18nSource": "https://electronegativity-i18n.s3.us-west-2.amazonaws.com",
"bugs": {
"url": "https://github.com/doyensec/electronegativity/issues"
},
"homepage": "https://github.com/doyensec/electronegativity#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.26.3",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"mocha": "^10.1.0",
"rimraf": "^3.0.2"
},
"dependencies": {
"@babel/parser": "^7.14.3",
"@babel/traverse": "^7.14.2",
"@doyensec/csp-evaluator": "^1.0.3",
"@electron/asar": "^3.0.3",
"@mapbox/node-pre-gyp": "^1.0.5",
"@typescript-eslint/typescript-estree": "^4.24.0",
"@yarnpkg/lockfile": "^1.1.0",
"asar": "^3.2.0",
"chalk": "^4.1.1",
"cheerio": "^1.0.0-rc.9",
"cli-progress": "^3.9.0",
"cli-table3": "^0.6.0",
"escope": "^3.6.0",
"eslint": "^7.27.0",
"esprima": "^4.0.1",
"estraverse": "^5.2.0",
"estraverse-fb": "^1.3.2",
"got": "^11.8.2",
"i18n": "^0.15.1",
"ini": "^1.3.8",
"linenumber": "^1.0.1",
"lodash": "^4.17.21",
"node-dir": "^0.1.17",
"read-package-tree": "^5.3.1",
"semver": "^7.3.5",
"temp-dir": "^2.0.0",
"typescript": "~4.2.4",
"winston": "^2.3.1"
},
"keywords": [
"electron",
"security"
]
}