forked from nodejs/i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.15 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
{
"name": "node-i18n",
"private": true,
"version": "1.0.0",
"supportedVersions": [
"v14.x",
"v13.x",
"v12.x",
"v10.x"
],
"description": "The home of translated Node.js documentation",
"repository": "https://github.com/nodejs/i18n",
"contributors": [
"Dhruv Jain <[email protected]>",
"Vanessa Yuen <[email protected]>",
"Zeke Sikelianos <[email protected]>"
],
"license": "MIT",
"main": "index.js",
"scripts": {
"collect": "node script/collect.js",
"upload-crowdin-glossary": "node script/upload-crowdin-glossary.js",
"test": "jest",
"lint": "standard",
"lint:fix": "standard --fix"
},
"dependencies": {
"lodash": "^4.17.15",
"walk-sync": "^2.1.0"
},
"devDependencies": {
"builtins": "^3.0.1",
"crowdin-glossary": "^1.2.0",
"dotenv-safe": "^8.2.0",
"download": "^8.0.0",
"fs-extra": "^9.0.0",
"globals": "^13.0.0",
"jest": "^25.4.0",
"semver": "^7.3.2",
"standard": "^14.3.3",
"superagent": "^5.2.2"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"verbose": true,
"testURL": "http://localhost"
}
}