-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 KB
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
{
"name": "@electron-elements/utils",
"version": "1.0.4",
"description": "Utilities for building electron elements.",
"main": "lib/index.js",
"types": "lib/utils.d.ts",
"scripts": {
"lint": "eslint . --cache",
"lint-fix": "eslint . --cache --fix",
"test": "karma start && eslint . --cache",
"unit-tests": "karma start"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:electron-elements/utils.git"
},
"keywords": [
"utils",
"electron-elements",
"custom elements",
"electron elements"
],
"author": "cPhost <priyankp390@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/electron-elements/utils/issues"
},
"homepage": "https://github.com/electron-elements/utils#readme",
"devDependencies": {
"electron": "^9.4.0",
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"karma": "^5.0.5",
"karma-electron": "^6.3.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^7.1.2"
}
}