-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.15 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
{
"name": "karteczki",
"productName": "Karteczki",
"version": "0.0.0",
"description": "My wicked app",
"license": "GPL-3.0",
"repository": "xwizard/karteczki",
"author": {
"name": "xwizard",
"email": "xwizard@server",
"url": "github.com/xwizard/karteczki"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"start": "electron .",
"build": "electron-packager . $npm_package_productName --out=dist --ignore='^/dist$' --prune --asar --all --version=0.31.1",
"lint": "jshint . --exclude node_modules",
"test": "mocha"
},
"files": [
"index.js",
"index.html",
"index.css"
],
"keywords": [
"electron-app"
],
"dependencies": {
"electron-debug": "latest",
"knockout": ">=3.3.0",
"semantic-ui-css": ">=2.1.4",
"rfr": ">=1.2.2"
},
"devDependencies": {
"electron-packager": "latest",
"electron-prebuilt": "latest",
"jshint": "latest",
"mocha": "latest"
},
"jshintConfig": {
"unused": "strict",
"globalstrict": true,
"globals": {
"require": true,
"__dirname": true,
"process": true,
"describe": true,
"it": true
}
}
}