forked from adobe/brackets
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
130 lines (130 loc) · 4.25 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
{
"name": "brackets-electron",
"productName": "Brackets-Electron",
"description": "Brackets-Electron",
"author": "Brackets Team <[email protected]>",
"license": "MIT",
"homepage": "http://brackets.io",
"version": "1.10.4",
"apiVersion": "1.10.0",
"issues": {
"url": "http://github.com/zaggino/brackets-electron/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/zaggino/brackets-electron.git"
},
"main": "./dist/index.js",
"bin": {
"brackets": "./dist/index.js"
},
"build": {
"appId": "com.squirrel.brackets-electron.Brackets-Electron",
"asar": false,
"files": [],
"npmRebuild": true,
"directories": {
"buildResources": "build",
"app": "dist",
"output": "dist-build"
},
"win": {
"target": [
"nsis",
"squirrel"
]
},
"mac": {
"category": "public.app-category.developer-tools"
},
"linux": {
"category": "Utility;TextEditor;Development;IDE;",
"target": [
"AppImage",
"deb"
]
}
},
"scripts": {
"prepush": "npm run test",
"dep-change": "grunt dep-change",
"postinstall": "grunt install && npm run build",
"build": "rimraf ./dist && gulp copy-src-dist && grunt build && tsc --project app && tsc --project src",
"build-optimized": "npm run build && grunt optimize",
"test": "npm run tslint",
"tslint": "tslint -c tslint.json --project tsconfig.json",
"dev": "concurrently --kill-others \"gulp watch\" \"tsc --watch --project app\" \"tsc --watch --project src\"",
"start": "electron .",
"pack": "npm run build-optimized && build --dir",
"dist": "npm run build-optimized && build",
"publish-win": "npm run build-optimized && build -w --publish onTagOrDraft",
"publish-mac": "npm run build-optimized && build -m --publish onTagOrDraft",
"publish-linux": "npm run build-optimized && build -l --publish onTagOrDraft"
},
"dependencies": {
"anymatch": "1.3.0",
"async": "2.3.0",
"chokidar": "1.6.1",
"decompress-zip": "0.3.0",
"fs-extra": "2.1.2",
"isbinaryfile": "3.0.2",
"lodash": "4.17.4",
"npm": "3.10.9",
"opn": "4.0.2",
"request": "2.81.0",
"requirejs": "2.3.3",
"semver": "5.3.0",
"strip-bom": "3.0.0",
"temp": "0.8.3",
"trash": "4.0.1",
"xml2js": "0.4.17"
},
"devDependencies": {
"@types/electron": "1.4.37",
"@types/fs-extra": "2.1.0",
"@types/jquery": "2.0.41",
"@types/lodash": "4.14.63",
"@types/node": "7.0.13",
"@types/ws": "0.0.40",
"concurrently": "3.4.0",
"cross-spawn": "5.1.0",
"electron": "1.6.6",
"electron-builder": "17.1.1",
"electron-builder-squirrel-windows": "17.0.1",
"electron-packager": "8.6.0",
"electron-rebuild": "1.5.7",
"eslint": "3.19.0",
"glob": "7.1.1",
"grunt": "0.4.5",
"grunt-cleanempty": "1.0.3",
"grunt-cli": "0.1.9",
"grunt-contrib-clean": "0.4.1",
"grunt-contrib-concat": "0.3.0",
"grunt-contrib-copy": "0.4.1",
"grunt-contrib-cssmin": "0.6.0",
"grunt-contrib-htmlmin": "0.1.3",
"grunt-contrib-jasmine": "0.4.2",
"grunt-contrib-less": "1.4.0",
"grunt-contrib-requirejs": "0.4.1",
"grunt-contrib-uglify": "0.2.0",
"grunt-contrib-watch": "1.0.0",
"grunt-eslint": "19.0.0",
"grunt-jasmine-node": "0.1.0",
"grunt-targethtml": "0.2.6",
"grunt-template-jasmine-requirejs": "0.1.0",
"grunt-usemin": "0.1.11",
"gulp": "3.9.1",
"gulp-watch": "4.3.11",
"husky": "0.13.3",
"jasmine-node": "1.11.0",
"load-grunt-tasks": "3.5.2",
"q": "1.4.1",
"rewire": "1.1.2",
"rimraf": "2.6.1",
"tslint": "5.1.0",
"typescript": "2.2.0",
"typescript-eslint-parser": "2.1.0",
"webpack": "2.4.1",
"xmldoc": "0.1.2"
}
}