-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.44 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
{
"name": "@pawbot/language",
"version": "1.0.0",
"description": "Paw Bot Locale",
"main": "index.js",
"scripts": {
"update-codeowners": "node .scripts/update-codeowners.js",
"test": "npm run lint && node .scripts/test.js",
"lint": "node .scripts/lint.js",
"lint:fix": "node .scripts/lint.js --fix",
"deduplicate": "node .scripts/deduplicate.js",
"update-readmes": "node .scripts/update-readmes.js",
"update-config": "node .scripts/update-config.js",
"crowdin-push": "crowdin push sources --auto-update",
"crowdin-push-translations": "crowdin push translations",
"crowdin-pull": "crowdin pull && npm run deduplicate && npm run update-config && npm run lint:fix && npm run update-readmes"
},
"contributors": [
"Reece Stokes <[email protected]>",
"Furie Francaise (github.com/FurieFox)"
],
"license": "NONE",
"repository": {
"type": "git",
"url": "git+https://github.com/just-a-paw/language.git"
},
"bugs": {
"url": "https://github.com/just-a-paw/language/issues"
},
"homepage": "https://github.com/just-a-paw/language#readme",
"devDependencies": {
"@babel/parser": "^7.18.9",
"@babel/types": "^7.18.9",
"@crowdin/cli": "^3.7.9",
"@types/dot-object": "^2.1.2",
"@types/node": "^18.0.6",
"@types/prettier": "^2.4.3",
"ajv": "^8.11.0",
"cldr-data": "^36.0.1",
"mri": "^1.2.0",
"prettier": "^2.5.1"
},
"dependencies": {
"dot-object": "^2.1.5"
}
}