-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.31 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
{
"name": "mongodb-workbench",
"productName": "MongoDB Workbench",
"version": "0.0.1",
"author": "Kyle P. Davis",
"description": "A client to make working with MongoDB even better",
"license": "MIT",
"homepage": "https://KylePDavis.github.io/mongodb-workbench",
"repository": {
"type": "git",
"url": "https://github.com/KylePDavis/mongodb-workbench.git"
},
"bugs": "https://github.com/KylePDavis/mongodb-workbench/issues",
"keywords": [
"mongodb",
"workbench",
"database",
"query",
"aggregate",
"visualize",
"data",
"ide",
"editor"
],
"main": "src/app/main.js",
"scripts": {
"postinstall": "electron-rebuild && bower install",
"test": "eslint src/ && jshint src/ && jscs src/app/ src/web/{*.js,components,pages}",
"start": "electron .",
"dist": "electron-packager . \"MongoDB Workbench\" --all --version=0.30.1 --out=dist/ --ignore='^/dist($|/)' --ignore='/\\.DS_Store$' --ignore='\\.sw.$' --prune --asar && (cd dist/; for D in */;do D=\"$(basename \"$D\")\"; cp ../README.md ../LICENSE.md \"$D\"; zip -y -r \"$D.zip\" \"$D\"; done)"
},
"dependencies": {
"mongodb": "~2.0.33"
},
"devDependencies": {
"electron-packager": "~5.0.1",
"electron-prebuilt": "~0.30.1",
"electron-rebuild": "~0.2.5"
}
,"private": true
}