-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.94 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
71
72
73
74
75
76
77
{
"name": "ankiplus",
"productName": "AnkiPlus",
"description": "Another Anki Application using Electron",
"license": "MIT",
"version": "0.0.0-semantically-released",
"repository": {
"type": "git",
"url": "https://github.com/DotHide/AnkiPlus.git"
},
"author": {
"name": "Martin_nett",
"email": "[email protected]",
"url": "www.dothide.com"
},
"scripts": {
"test": "karma start karma.conf.js",
"test:single": "karma start karma-travis.conf.js",
"start": "grunt && electron .",
"commit": "git-cz",
"build": "electron-packager . --out=dist --app-version=$npm_package_version --prune --asar --overwrite --all",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"main": "index.js",
"files": [
"index.js",
"index.html",
"index.css"
],
"keywords": [
"anki",
"electron-app",
"electron"
],
"dependencies": {
"electron-debug": "^0.5.0"
},
"devDependencies": {
"commitizen": "2.7.6",
"cz-conventional-changelog": "1.1.5",
"electron-packager": "^6.0.0",
"electron-prebuilt": "^0.37.5",
"grunt": "0.4.5",
"grunt-angular-templates": "1.0.3",
"grunt-contrib-clean": "1.0.0",
"grunt-contrib-concat": "1.0.0",
"grunt-contrib-connect": "1.0.1",
"grunt-contrib-htmlmin": "1.3.0",
"grunt-contrib-watch": "1.0.0",
"grunt-injector": "0.6.1",
"grunt-ng-annotate": "2.0.2",
"grunt-wiredep": "3.0.1",
"jasmine-core": "2.4.1",
"jquery": "2.2.3",
"karma": "0.13.22",
"karma-jasmine": "0.3.8",
"karma-phantomjs-launcher": "1.0.0",
"load-grunt-tasks": "3.5.0",
"phantomjs-prebuilt": "2.1.7",
"semantic-release": "4.3.5",
"time-grunt": "1.3.0",
"toastr": "2.1.2",
"xo": "^0.14.0"
},
"xo": {
"esnext": true,
"envs": [
"node",
"browser"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}