forked from electron/i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.42 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
{
"name": "electron-i18n",
"version": "0.0.0-development",
"description": "A home for Electron's translated documentation.",
"main": "index.json",
"files": [
"index.json"
],
"repository": "https://github.com/electron/i18n",
"author": "zeke",
"license": "MIT",
"devDependencies": {
"@octokit/rest": "^16.26.0",
"@types/cheerio": "^0.22.11",
"@types/got": "^9.4.4",
"@types/lodash": "^4.14.134",
"@types/rimraf": "^2.0.2",
"chai": "^4.1.2",
"chai-date-string": "^0.1.0",
"check-for-leaks": "^1.2.0",
"cheerio": "^1.0.0-rc.2",
"clean-deep": "^3.0.2",
"crowdin-glossary": "^1.2.0",
"del": "^5.0.0",
"dotenv-safe": "^6.0.0",
"electron-docs": "^3.0.2",
"get-crowdin-file-ids": "^1.1.1",
"github-slugger": "^1.2.0",
"globals": "^12.0.0",
"got": "^9.6.0",
"href-type": "^1.0.1",
"hubdown": "^2.3.0",
"husky": "^3.0.1",
"js-yaml": "^3.8.4",
"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": "^6.1.4",
"npm-run-all": "^4.1.2",
"prettier": "^1.18.2",
"require-yaml": "^0.0.1",
"rimraf": "^2.6.3",
"semantic-release": "^15.5.0",
"simple-statistics": "^7.0.2",
"ts-node": "^8.1.0",
"typescript": "^3.5.1",
"unist-util-visit": "^1.4.1",
"walk-sync": "^2.0.2"
},
"scripts": {
"collect": "ts-node script/collect.ts",
"build": "npm-run-all build:*",
"build:stats": "ts-node script/stats.ts",
"build:module": "node script/build-module.js",
"build:nav": "ts-node script/parse-nav.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",
"content-cleanup": "ts-node script/i18n-content-cleanup.ts",
"test": "npm run test-only",
"prettier": "prettier --check \"./**/*.{ts,js}\"",
"test-only": "mocha && prettier --check \"./**/*.{ts,js}\" --write",
"prepack": "check-for-leaks",
"prepush": "check-for-leaks",
"pretest": "npm run build",
"semantic-release": "semantic-release",
"upload-crowdin-glossary": "node script/upload-crowdin-glossary.js",
"automerge": "ts-node ./script/automerge.ts"
},
"electronLatestStableTag": "v6.0.2",
"electronMasterBranchCommit": "f654da9f56901e37c7ef408c6ccacd0a7425cd48",
"engines": {
"node": ">=10"
}
}