-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "@electron-elements/send-feedback",
"version": "2.0.3",
"description": "Send Feedback allows you to incorporate feedback function in your app.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:electron-elements/send-feedback.git"
},
"files": [
"lib/**/*"
],
"scripts": {
"lint": "eslint . --cache",
"lint-fix": "eslint . --fix --cache",
"unit-tests": "karma start --single-run",
"test": "eslint . --cache && karma start --single-run",
"start": "electron example-app/main.js"
},
"keywords": [
"send-feedback",
"electron",
"custom elements",
"electron-elements"
],
"author": "Priyank Patel <priyankp390@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/electron-elements/send-feedback/issues"
},
"homepage": "https://github.com/electron-elements/send-feedback#readme",
"devDependencies": {
"electron": "^8.3.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^3.1.0",
"karma": "^5.0.5",
"karma-electron": "^6.3.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^7.1.2"
},
"dependencies": {
"@electron-elements/utils": "1.0.4"
}
}