-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.33 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
{
"name": "msdn-delocalizer",
"version": "1.1.0",
"description": "Browser extension to force de-localization of Microsoft documentation pages",
"main": "index.js",
"scripts": {
"manifest": "copyfiles --flat src/manifest.json LICENSE.md build/dest",
"license": "copyfiles --flat LICENSE.md build/dest",
"icon": "magick convert src/icon.svg build/dest/icon.png",
"resources": "npm run manifest && npm run license",
"typescript": "tsc",
"browserify": "browserify build/src/background.js --outfile build/dest/background.js",
"package": "web-ext build -s build/dest -a build/web-ext",
"build": "npm run resources && npm run typescript && npm run browserify && npm run package",
"test": "mocha build/test"
},
"repository": {
"type": "git",
"url": "https://github.com/ForNeVeR/msdn-delocalizer"
},
"keywords": [
"msdn",
"microsoft",
"docs"
],
"author": "Friedrich von Never",
"license": "MIT",
"bugs": {
"url": "https://github.com/ForNeVeR/msdn-delocalizer/issues"
},
"homepage": "https://github.com/ForNeVeR/msdn-delocalizer",
"devDependencies": {
"@types/assert": "^1.5.5",
"@types/chrome": "0.0.91",
"@types/mocha": "^7.0.2",
"browserify": "^10.2.6",
"copyfiles": "^2.2.0",
"mocha": "^2.2.4",
"typescript": "^3.8.3",
"web-ext": "^6.3.0"
}
}