This repository has been archived by the owner on Aug 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 241
/
package.json
76 lines (76 loc) · 2.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
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
{
"name": "electron-i18n",
"version": "0.0.0-development",
"description": "A home for Electron's translated documentation.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/electron/i18n",
"author": "zeke",
"license": "MIT",
"devDependencies": {
"@octokit/rest": "^18.0.3",
"@types/cheerio": "^0.22.11",
"@types/lodash": "^4.14.134",
"@types/node": "^16.3.1",
"@types/rimraf": "^3.0.0",
"chai": "^4.1.2",
"chai-date-string": "^0.1.0",
"check-for-leaks": "^1.2.0",
"cheerio": "^1.0.0-rc.2",
"crowdin-glossary": "^1.2.0",
"del": "^6.0.0",
"dotenv-safe": "^8.1.0",
"extract-zip": "^2.0.0",
"get-crowdin-file-ids": "^1.1.1",
"github-slugger": "^1.2.0",
"globals": "^13.0.0",
"got": "^11.0.1",
"handlebars": "^4.7.4",
"href-type": "^1.0.1",
"hubdown": "^2.6.0",
"husky": "^7.0.1",
"locale-code": "^2.0.1",
"lodash": "^4.17.4",
"make-dir": "^3.0.0",
"make-promises-safe": "^5.0.0",
"match-words": "^1.0.0",
"mocha": "^9.0.0",
"npm-run-all": "^4.1.2",
"prettier": "^2.0.0",
"require-yaml": "^0.0.1",
"rimraf": "^3.0.0",
"roggy": "^0.1.0",
"semantic-release": "^17.0.3",
"simple-statistics": "^7.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.0.5",
"unist-util-remove": "^3.1.0",
"unist-util-visit": "^2.0.1",
"walk-sync": "^3.0.0"
},
"scripts": {
"collect": "ts-node script/collect.ts",
"build": "npm-run-all build:*",
"build:stats": "ts-node script/stats.ts",
"build:module": "ts-node script/build-module.ts",
"build:readme": "ts-node script/readme.ts",
"build:wordcount": "ts-node script/wordcount.ts > wordcount.md",
"update-source-content": "script/update-source-content.sh",
"get-cache": "ts-node ./script/get-cache.ts",
"test": "npm run test-only",
"prettier": "prettier --check \"./**/*.{ts,js}\"",
"test-only": "tsc && mocha && prettier --check \"./**/*.{ts,js}\" --write",
"prepack": "check-for-leaks",
"pretest": "npm run build",
"semantic-release": "semantic-release",
"upload-crowdin-glossary": "ts-node script/upload-crowdin-glossary.ts",
"automerge": "ts-node ./script/automerge.ts"
},
"electronLatestStableTag": "v15.1.1",
"engines": {
"node": ">=10"
}
}