-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.11 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.11 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
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
78
79
80
81
82
83
84
{
"name": "konote",
"displayName": "KoNote",
"version": "2.3.4",
"author": "KoNote",
"description": "KoNote",
"main": "src/start.html",
"chromium-args": "--enable-spell-checking --enable-smooth-scrolling",
"build": {
"appId": "ca.konode.konote",
"nwVersion": "0.32.4",
"outputPattern": "${NAME}-${PLATFORM}-${ARCH}",
"mac": {
"copyright": "Copyright 2018 Konode",
"icon": "src/icon.icns"
},
"win": {
"copyright": "Copyright 2018 Konode",
"icon": "src/icon.ico"
}
},
"window": {
"icon": "src/icon.png",
"title": "KoNote",
"width": 400,
"height": 500,
"show": false,
"resizable": false,
"position": "center"
},
"private": true,
"license": "MPL-2.0",
"devDependencies": {
"chai": "^3.5.0",
"coffee-script": "^1.12.7",
"faker": "^3.1.0",
"grunt": "^1.0.3",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-coffee": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-stylus": "^1.2.0",
"grunt-contrib-uglify": "^2.2.1",
"grunt-exec": "^1.0.1",
"grunt-prompt": "^1.3.2",
"grunt-text-replace": "^0.4.0",
"mocha": "^3.1.0",
"nw": "0.32.4-sdk",
"nwjs-builder-phoenix": "^1.14.6",
"stylus": "^0.54.5",
"grunt-appdmg": "^1.0.0"
},
"dependencies": {
"archiver": "^3.0.0",
"async": "^2.1.2",
"backbone": "^1.3.3",
"base64url": "^3.0.0",
"buffer-equal-constant-time": "^1.0.1",
"csv-parse": "^3.1.3",
"csv-stringify": "^3.1.1",
"diff": "^3.2.0",
"diff-match-patch": "^1.0.0",
"es-decorate": "^1.0.0",
"graceful-fs": "^4.1.11",
"immutable": "3.8.1",
"joi": "^9.2.0",
"mkdirp": "^0.5.1",
"moment": "^2.22.1",
"nlp_compromise": "6.5.0",
"officegen": "^0.4.5",
"pluralize": "^1.1.2",
"request": "^2.78.0",
"rimraf": "^2.6.1",
"semver": "^5.3.0",
"source-map-support": "^0.5.0",
"underscore": "^1.8.3",
"yauzl": "^2.7.0"
},
"scripts": {
"start": "nw . --enable-logging=stderr --remote-debugging-port=9222 --load-extension=scripts/react-devtools-immutable/",
"test": "mocha --compilers coffee:coffee-script/register --recursive --bail",
"dist": "build --tasks mac-x64 --mirror https://dl.nwjs.io/ .",
"build": "grunt build"
}
}