This repository has been archived by the owner on Jan 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
107 lines (107 loc) · 2.86 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "dat-desktop",
"productName": "Dat",
"version": "2.0.0",
"license": "MIT",
"repository": "datproject/dat-desktop",
"description": "Dat Desktop App",
"author": "Dat Team",
"dependencies": {
"base-elements": "^2.2.1",
"choo": "^5.1.0",
"choo-expose": "^1.0.0",
"choo-log": "^6.0.0",
"choo-persist": "^3.0.0",
"dat-colors": "^3.5.0",
"dat-doctor": "^1.2.2",
"dat-encoding": "^4.0.1",
"dat-icons": "^2.2.0",
"dat-node": "^3.2.3",
"delegate-electron-events": "^1.0.0",
"electron-auto-updater": "^0.9.2",
"electron-default-menu": "^1.0.0",
"electron-window": "^0.8.1",
"envobj": "^1.0.2",
"explain-error": "^1.0.3",
"microcomponent": "^3.1.5",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"ms": "^0.7.2",
"multidat": "^5.0.1",
"nanologger": "^1.0.2",
"nanomorph": "^5.0.0",
"prettier-bytes": "^1.0.3",
"rimraf": "^2.5.4",
"run-waterfall": "^1.1.3",
"sheetify": "^6.0.0",
"tachyons": "^4.7.2",
"throttleit": "^1.0.0",
"toiletdb": "^1.4.0",
"xhr": "^2.3.3",
"xtend": "^4.0.1"
},
"scripts": {
"bundle": "./scripts/build bundle",
"watch": "scripts/browserify.js watch",
"deps": "dependency-check . --entry ./app.js && dependency-check . --entry ./app.js --extra -i tachyons -i dat-colors --no-dev",
"rebuild": "./scripts/build rebuild",
"burnthemall": "rm -rf ~/.electron && npm run clean && npm install && npm run bundle",
"clean": "rm -rf node_modules/",
"build-background": "./scripts/build background",
"start": "NODE_ENV=development electron .",
"test": "standard && npm run deps && npm run test:unit && npm run test:integration",
"test:integration": "node tests",
"test:unit": "node tests/intro.js && electron tests/dat-manager.js",
"postinstall": "./scripts/build postinstall",
"pack": "build --dir",
"dist": "build --publish=onTagOrDraft"
},
"devDependencies": {
"browserify": "^13.3.0",
"clipboardy": "^1.1.2",
"concat-stream": "^1.6.0",
"del": "^2.2.2",
"dependency-check": "^2.6.0",
"electron": "1.4.14",
"electron-builder": "^8.6.0",
"envify": "^4.0.0",
"nodemon": "^1.9.2",
"sheetify-nested": "^1.0.2",
"spectron": "^3.5.0",
"spok": "^0.7.0",
"standard": "^7.1.2",
"tap": "^10.3.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"through2": "^2.0.3",
"watchify": "^3.7.0"
},
"build": {
"appId": "com.datproject.dat",
"mac": {
"category": "public.app-category.utilities"
},
"dmg": {
"contents": [
{
"x": 220,
"y": 200
},
{
"x": 448,
"y": 200,
"type": "link",
"path": "/Applications"
}
]
},
"protocols": [
{
"name": "Dat Link",
"schemes": [
"dat"
]
}
]
}
}