forked from sulu-one/sulu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.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
{
"name": "sulu",
"stability": "beta",
"description": "A hackable file manager",
"version": "0.7.4",
"author": "Stephan Ahlf <[email protected]>",
"bugs": {
"url": "https://github.com/s-a/sulu/issues"
},
"preferGlobal": true,
"bin": {
"sulu": "lib/index.js"
},
"homepage": "https://github.com/s-a/sulu",
"keywords": [
"filesystem",
"filemanager",
"explorer",
"finder",
"file",
"folder"
],
"license": "",
"repository": {
"type": "git",
"url": "https://github.com/sulu-one/sulu"
},
"scripts": {
"docs": "jsdoc2md \"./app/packages/**/*.js\" > api.md",
"start": "electron ./app",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf ./dist",
"post-install": "cd app/packages && npm install",
"pull": "git pull && cd app/packages/node_modules && git submodule update --recursive --remote && git submodule update --init",
"bump": "npm run pull && npm version patch && git push && git push --tags && npm publish",
"build-windows--ia32": "node lib/build.js --os windows --arch ia32",
"build-windows--x64": "node lib/build.js --os windows --arch x64",
"build-windows": "npm run build-windows--ia32 && npm run build-windows--x64",
"build-linux--ia32": "node lib/build.js --os linux --arch ia32",
"build-linux--x64": "node lib/build.js --os linux --arch x64",
"build-mac--x64": "node lib/build.js --os mac --arch x64",
"build-linux": "npm run build-linux--ia32 && npm run build-linux--x64",
"build": "npm run build-linux && npm run build-windows"
},
"devDependencies": {
"electron": "^1.4.12",
"electron-builder": "^10.13.1",
"electron-prebuilt": "^1.2.2",
"minimist": "^1.2.0"
},
"dependencies": {}
}