forked from ipfs/ipfs-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
145 lines (145 loc) · 3.73 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "ipfs-desktop",
"productName": "IPFS Desktop",
"private": true,
"version": "0.3.0",
"description": "IPFS Native Application",
"main": "src/index.js",
"dependencies": {
"auto-launch": "^5.0.5",
"bl": "^1.2.1",
"debug": "^3.1.0",
"electron-compile": "^6.4.2",
"electron-menubar": "^1.0.1",
"electron-squirrel-startup": "^1.0.0",
"file-extension": "^4.0.1",
"go-ipfs-dep": "^0.4.13",
"ipfs-stats": "^1.2.4",
"ipfsd-ctl": "^0.27.0",
"is-ipfs": "^0.3.2",
"moment": "^2.20.1",
"multiaddr": "^3.0.2",
"normalize.css": "^7.0.0",
"pretty-bytes": "^4.0.2",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"cross-env": "^5.1.3",
"electron-forge": "^4.2.0",
"electron-prebuilt-compile": "1.8.2-beta.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4",
"eslint-config-aegir": "^1.0.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2",
"eslint-plugin-jsx-a11y": "^6",
"eslint-plugin-react": "^7",
"expect": "^22.1.0",
"istanbul": "^0.4.5",
"jsdom": "^11.6.1",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"pre-commit": "^1.2.2",
"sinon": "^4.2.2",
"spectron": "^3.8.0"
},
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint ./src ./test",
"test": "cross-env NODE_ENV=test nyc --all mocha --require babel-core/register --require ./test/setup.js --recursive",
"coverage": "(nyc report --reporter=text-lcov > coverage.lcov) && codecov"
},
"nyc": {
"include": [
"src/**/*.js*"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"config": {
"forge": {
"make_targets": {
"win32": [
"squirrel"
],
"darwin": [
"dmg"
],
"linux": [
"deb",
"rpm"
]
},
"electronPackagerConfig": {
"packageManager": "yarn",
"executableName": "ipfs-desktop",
"icon": "./src/img/icons/executable/ipfs.ico"
},
"electronInstallerDebian": {
"icon": "./src/img/icons/executable/ipfs.ico",
"scripts": {
"postinst": "postinst.sh"
}
},
"electronWinstallerConfig": {
"name": "Desktop",
"setupIcon": "./src/img/icons/executable/ipfs.ico",
"loadingGif": "./src/img/loading.gif",
"exe": "ipfs-desktop.exe"
},
"electronInstallerDMG": {
"icon": "./src/img/icons/executable/ipfs.icns"
},
"github_repository": {
"owner": "ipfs-shipyard",
"name": "ipfs-desktop"
}
}
},
"pre-commit": [
"lint"
],
"keywords": [
"ipfs",
"electron",
"station",
"desktop",
"app"
],
"repository": {
"type": "git",
"url": "https://github.com/ipfs-shipyard/ipfs-desktop"
},
"author": "IPFS",
"contributors": [
"Kristoffer Ström <[email protected]>",
"David Dias <[email protected]>",
"Juan Benet <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Henrique Dias <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs-shipyard/ipfs-desktop/issues"
},
"homepage": "https://github.com/ipfs-shipyard/ipfs-desktop"
}