-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "inventaire-i18n",
"type": "module",
"version": "1.0.0",
"description": "Repository hosting inventaire i18n strings and scripts",
"main": "index.js",
"files": [
"assets",
"dist",
"README.md",
"scripts",
"src",
"translations"
],
"scripts": {
"build": "./scripts/build/build.sh",
"build-components": "./scripts/build/build_components.sh",
"fetch-translations": "./scripts/fetch/fetch_translations.sh",
"find-duplicated-keys": "./scripts/maintenance/find_duplicated_keys.sh",
"remove-matching-keys": "./scripts/maintenance/remove_matching_keys.sh",
"reorder-all-resources": "./scripts/reorder/reorder_all_resources.sh",
"test": "echo \"Error: no test specified\" && exit 1",
"update-stats": "./scripts/stats/update_language_stats.js"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0",
"dependencies": {
"tiny-chalk": "^3.0.1",
"wikibase-sdk": "^9.0.5"
},
"imports": {
"#assets/*": "./assets/*.js",
"#scripts/*": "./scripts/*.js",
"#src/*": "./src/*",
"#root/*": "./*"
},
"devDependencies": {
"json-apply": "^1.0.1"
}
}