forked from brackets-userland/brackets-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.66 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
{
"name": "quadre-git",
"title": "Quadre Git",
"version": "1.0.0-alpha.3",
"engines": {
"brackets": ">=1.8.0"
},
"description": "Integration of Git into Quadre",
"keywords": [
"quadre-extension",
"git",
"version-control",
"source-control"
],
"homepage": "https://github.com/quadre-code/quadre-git",
"bugs": "https://github.com/quadre-code/quadre-git/issues",
"license": "MIT",
"author": {
"name": "Martin Zagora",
"email": "zaggino@gmail.com",
"url": "https://github.com/zaggino"
},
"repository": {
"type": "git",
"url": "https://github.com/quadre-code/quadre-git.git"
},
"scripts": {
"prebuild": "rimraf ./dist",
"build": "npm run webpack-all && grunt postinstall && npm run tsc-projects",
"tsc-projects": "concurrently \"tsc\" \"tsc -p src/node\"",
"dev": "concurrently -k \"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 -o ./thirdparty/bluebird.browser.js -p --output-library-target=amd",
"webpack-blueimp-md5": "webpack ./node_modules/blueimp-md5/js/md5.js -o ./thirdparty/blueimp-md5.browser.js -p --output-library-target=amd",
"webpack-eventemitter2": "webpack ./node_modules/eventemitter2/lib/eventemitter2.js -o ./thirdparty/eventemitter2.browser.js -p --output-library-target=amd",
"webpack-marked": "webpack ./node_modules/marked/lib/marked.js -o ./thirdparty/marked.browser.js -p --output-library-target=amd",
"webpack-moment": "webpack ./node_modules/moment/moment.js -o ./thirdparty/moment.browser.js -p --output-library-target=amd",
"webpack-urijs": "webpack ./node_modules/urijs/src/URI.js -o ./thirdparty/urijs.browser.js -p --output-library-target=amd",
"prepublishOnly": "npm run test"
},
"dependencies": {
"bluebird": "2.11.0",
"blueimp-md5": "^2.10.0",
"eventemitter2": "^5.0.1",
"marked": "^0.6.2",
"moment": "^2.24.0",
"urijs": "^1.19.1",
"which": "^1.3.1"
},
"devDependencies": {
"@types/bluebird": "2.0.30",
"@types/blueimp-md5": "^2.7.0",
"@types/jquery": "^2.0.53",
"@types/marked": "^0.6.5",
"@types/urijs": "^1.19.0",
"@types/which": "^1.3.1",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"concurrently": "^4.1.0",
"eslint": "^5.16.0",
"eslint-config-pureprofile": "^2.4.0",
"glob": "^7.1.3",
"grunt": "latest",
"grunt-lesslint": "latest",
"grunt-lineending": "latest",
"grunt-zip": "latest",
"lodash": "^4.17.11",
"rimraf": "^2.6.3",
"tslint": "^5.16.0",
"typescript": "~3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"i18n": [
"en",
"en-gb",
"de",
"fr",
"it",
"pl",
"pt-br",
"zh-cn"
],
"package-i18n": {
"de": {
"description": "Git-Integration für Quadre",
"keywords": [
"git",
"version-control",
"source-control",
"Versionsverwaltung",
"Versionskontrollsystem"
]
},
"pl": {
"description": "Integracja Gita w Quadre",
"keywords": [
"git",
"version-control",
"source-control",
"kontrola-wersji",
"system-kontroli-wersji"
]
}
}
}