-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "electron-profile",
"version": "1.1.2",
"description": "Store and manipulate your profile for your Electron app.",
"main": "index.js",
"scripts": {
"start": "electron",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "electron-node-tap --preload ./test/unit/preload.js ./test/unit/*.spec.js",
"test:e2e": "mocha ./test/e2e/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron-utils/electron-profile.git"
},
"keywords": [
"Electron",
"Platform"
],
"author": "jwu",
"license": "MIT",
"bugs": {
"url": "https://github.com/electron-utils/electron-profile/issues"
},
"homepage": "https://github.com/electron-utils/electron-profile",
"devDependencies": {
"electron": "^1.6.5",
"electron-node-tap": "^1.1.3",
"mocha": "^3.2.0",
"spectron": "^3.6.1"
},
"dependencies": {
"electron-ipc-plus": "^1.3.3",
"electron-platform": "^1.2.0",
"electron-protocols": "^1.0.4",
"fs-jetpack": "^0.13.3"
}
}