forked from doyensec/electronegativity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.79 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
{
"name": "@doyensec/electronegativity",
"version": "1.4.0",
"description": "Electronegativity is a tool to identify misconfigurations and security anti-patterns in Electron applications",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist/ && babel ./src --out-dir dist/ --source-maps",
"test": "npm run build && mocha --compilers js: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",
"bugs": {
"url": "https://github.com/doyensec/electronegativity/issues"
},
"homepage": "https://github.com/doyensec/electronegativity#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"@babel/parser": "^7.1.2",
"@babel/traverse": "^7.3.4",
"@doyensec/csp-evaluator": "^1.0.3",
"@typescript-eslint/typescript-estree": "^1.9.0",
"asar": "^1.0.0",
"chalk": "^2.4.1",
"cheerio": "^1.0.0-rc.2",
"cli-progress": "^2.0.0",
"cli-table3": "^0.5.1",
"escope": "^3.6.0",
"eslint": "^6.5.1",
"esprima": "^4.0.0",
"estraverse": "^4.2.0",
"estraverse-fb": "^1.3.2",
"got": "^9.3.0",
"linenumber": "^1.0.0",
"lodash": "^4.17.15",
"mocha": "^5.2.0",
"node-dir": "^0.1.17",
"semver": "^5.5.1",
"typescript": "^3.1.3",
"winston": "^2.3.1"
},
"keywords": [
"electron",
"security"
]
}