-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.51 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": "electron-packager-languages",
"version": "0.5.0",
"main": "dist/index.js",
"repository": "[email protected]:barinali/electron-packager-languages.git",
"bugs": {
"url": "https://github.com/barinali/electron-packager-languages/issues"
},
"author": "Ali BARIN <[email protected]>",
"contributors": [
{
"name": "electron-packager-languages contributors",
"url": "https://github.com/barinali/electron-packager-languages/graphs/contributors"
}
],
"license": "MIT",
"keywords": [
"electron-packager",
"languages",
"app store",
"play store",
"electron"
],
"engines": {
"node": ">6.0.0"
},
"scripts": {
"build": "babel src --out-dir dist",
"lint": "eslint .",
"prepublish": "npm run build",
"test": "babel-node test/specs/main",
"snyk-protect": "snyk protect"
},
"dependencies": {
"rimraf": "^2.6.2"
},
"devDependencies": {
"@babel/cli": "^7.12.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"electron-packager": "^16.0.0",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"husky": "^0.15.0-rc.13",
"snyk": "^1.1064.0"
},
"files": [
"dist"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "6"
}
}
]
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"snyk": true
}