forked from nextcloud-libraries/nextcloud-l10n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 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
{
"name": "@nextcloud/l10n",
"version": "1.4.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "babel ./lib --out-dir dist --extensions '.ts,.tsx' --source-maps && tsc --emitDeclarationOnly",
"build:doc": "typedoc --excludeNotExported --mode file --out dist/doc lib && touch dist/doc/.nojekyll",
"check-types": "tsc",
"dev": "babel ./lib --out-dir dist --extensions '.ts,.tsx' --watch",
"test": "jest",
"test:watch": "jest --watchAll"
},
"keywords": [
"nextcloud"
],
"homepage": "https://github.com/nextcloud/nextcloud-l10n#readme",
"author": "Christoph Wurst",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/nextcloud/nextcloud-l10n"
},
"dependencies": {
"core-js": "^3.6.4",
"node-gettext": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@nextcloud/browserslist-config": "^2.2.0",
"@nextcloud/typings": "^1.0.0",
"@types/node-gettext": "^3.0",
"babel-jest": "^27.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"gettext-parser": "^4.0.3",
"jest": "^27.2.1",
"typedoc": "^0.22.4",
"typescript": "^4.0.2"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}