-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.35 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
{
"name": "orange-i18n",
"version": "4.0.3",
"description": "Banana Internationalization library",
"main": "dist/banana-i18n.js",
"typings": "types/index.d.ts",
"scripts": {
"test:types": "tsc -p ./types/tests/tsconfig.json",
"test:unit": "mocha",
"test": "npm run lint && npm run test:types && npm run test:unit",
"lint": "eslint src test",
"build": "rollup -c",
"dev": "rollup -c -w",
"build-locale": "bash scripts/compile-lang.sh"
},
"keywords": [
"internationalization",
"localization",
"i18n",
"l10n"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wikimedia-gadgets/orange-i18n.git"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"cldrpluralruleparser": "^1.3.2",
"esbuild": "^0.8.55",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"esm": "^3.2.25",
"jquery": "^3.6.0",
"jsdom": "^16.5.3",
"mocha": "^8.3.0",
"mwn": "^0.10.4",
"rollup": "^2.40.0",
"rollup-plugin-esbuild": "^2.6.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.2.3"
}
}