-
Notifications
You must be signed in to change notification settings - Fork 190
/
package.json
108 lines (108 loc) · 3.56 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
{
"name": "brackets-git",
"title": "Brackets Git",
"version": "1.0.0",
"engines": {
"brackets": ">=1.8.0"
},
"description": "Integration of Git into Brackets",
"keywords": [
"brackets-extension",
"git",
"version-control",
"source-control"
],
"homepage": "https://github.com/zaggino/brackets-git",
"bugs": "https://github.com/zaggino/brackets-git/issues",
"license": "MIT",
"author": {
"name": "Martin Zagora",
"email": "zaggino@gmail.com",
"url": "https://github.com/zaggino"
},
"repository": {
"type": "git",
"url": "https://github.com/zaggino/brackets-git.git"
},
"scripts": {
"postinstall": "npm run webpack-all && grunt postinstall && npm run build",
"build": "rimraf ./dist && npm run tsc-projects",
"tsc-projects": "concurrently \"tsc\" \"tsc -p src/node\"",
"dev": "concurrently \"tsc --watch\" \"tsc -p src/node --watch\"",
"test": "npm run build && npm run eslint && npm run tslint && npm run tslint-node",
"eslint": "eslint --ext .ts ./src",
"tslint": "tslint -c tslint.json --project tsconfig.json",
"tslint-node": "tslint -c tslint.json --project src/node/tsconfig.json",
"webpack-all": "npm run webpack-bluebird && npm run webpack-blueimp-md5 && npm run webpack-eventemitter2 && npm run webpack-marked && npm run webpack-moment && npm run webpack-urijs",
"webpack-bluebird": "webpack ./node_modules/bluebird/js/main/bluebird.js ./thirdparty/bluebird.browser.js -p --output-library-target=amd",
"webpack-blueimp-md5": "webpack ./node_modules/blueimp-md5/js/md5.js ./thirdparty/blueimp-md5.browser.js -p --output-library-target=amd",
"webpack-eventemitter2": "webpack ./node_modules/eventemitter2/lib/eventemitter2.js ./thirdparty/eventemitter2.browser.js -p --output-library-target=amd",
"webpack-marked": "webpack ./node_modules/marked/lib/marked.js ./thirdparty/marked.browser.js -p --output-library-target=amd",
"webpack-moment": "webpack ./node_modules/moment/moment.js ./thirdparty/moment.browser.js -p --output-library-target=amd",
"webpack-urijs": "webpack ./node_modules/urijs/src/URI.js ./thirdparty/urijs.browser.js -p --output-library-target=amd"
},
"dependencies": {
"bluebird": "2.11.0",
"blueimp-md5": "2.6.0",
"eventemitter2": "2.2.1",
"lodash": "4.17.4",
"marked": "0.3.9",
"moment": "2.21.0",
"urijs": "1.18.4",
"webpack": "1.14.0",
"which": "1.2.12"
},
"devDependencies": {
"@types/bluebird": "2.0.30",
"@types/blueimp-md5": "1.1.30",
"@types/eventemitter2": "2.2.1",
"@types/jquery": "2.0.39",
"@types/marked": "0.0.28",
"@types/urijs": "1.15.31",
"@types/which": "1.0.28",
"concurrently": "3.1.0",
"eslint": "3.13.1",
"eslint-config-pureprofile": "2.2.0",
"glob": "7.1.1",
"grunt": "latest",
"grunt-lesslint": "latest",
"grunt-lineending": "latest",
"grunt-zip": "latest",
"rimraf": "2.5.4",
"tslint": "4.3.1",
"typescript": "2.1.5",
"typescript-eslint-parser": "1.0.2"
},
"i18n": [
"en",
"en-gb",
"de",
"fr",
"it",
"pl",
"pt-br",
"zh-cn"
],
"package-i18n": {
"de": {
"description": "Git-Integration für Brackets",
"keywords": [
"git",
"version-control",
"source-control",
"Versionsverwaltung",
"Versionskontrollsystem"
]
},
"pl": {
"description": "Integracja Gita w Brackets",
"keywords": [
"git",
"version-control",
"source-control",
"kontrola-wersji",
"system-kontroli-wersji"
]
}
}
}