-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
60 lines (60 loc) · 1.69 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
53
54
55
56
57
58
59
60
{
"name": "pseudo-localization",
"version": "2.4.0",
"description": "Dynamic pseudo-localization in the browser and nodejs",
"main": "./dist/cjs/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"bin"
],
"bin": "./bin/pseudo-localize",
"scripts": {
"start": "node devserver.mjs",
"prepare": "npm run tsc && npm run transpile-cjs",
"transpile-cjs": "babel src --out-dir dist/cjs --minified --no-comments --source-maps --extensions '.ts'",
"generate-types": "tsc --emitDeclarationOnly",
"check-formatting": "prettier --list-different src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"lint": "eslint src/**/*.js",
"test-js": "jest src/*",
"test": "npm run test-js jest && npm run check-formatting && npm run check-types && npm run lint",
"check-types": "tsc --noEmit",
"tsc": "tsc"
},
"author": "Tryggvi Gylfason (http://twitter.com/tryggvigy)",
"keywords": [
"internationalization",
"localization",
"pseudo-localization",
"l10n",
"i18n",
"pseudo",
"language",
"translation",
"pseudo-localize"
],
"repository": {
"type": "git",
"url": "https://github.com/tryggvigy/pseudo-localization.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^18.7.9",
"eslint": "^6.1.0",
"jest": "^28.1.3",
"jest-cli": "^28.1.3",
"prettier": "^1.19.1"
},
"dependencies": {
"flat": "^5.0.2",
"get-stdin": "^7.0.0",
"typescript": "^4.7.4",
"yargs": "^17.2.1"
}
}