-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 2.23 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@loveholidays/phrasebook",
"version": "2.2.0",
"description": "A lightweight translation library for React/Preact projects with a similar interface to react-i18next",
"sideEffects": false,
"module": "lib/index.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "npm-run-all build:*",
"build:clean": "rm -rf lib",
"build:mjs": "node ./esbuild.js",
"build:types": "tsc -p tsconfig.json --emitDeclarationOnly",
"test": "jest",
"lint": "eslint --ext .ts,.tsx ./src && prettier -c '**/*.json' '**/*.md'",
"lint:fix": "eslint --ext .ts,.tsx ./src --fix && prettier -w '**/*.json' '**/*.md'",
"lint:info": "eslint --print-config .eslintrc.js",
"changeset": "changeset",
"yalc:publish": "npm run build && npm pack && npx -y yalc publish --push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loveholidays/phrasebook.git"
},
"bugs": {
"url": "https://github.com/loveholidays/phrasebook/issues"
},
"homepage": "https://github.com/loveholidays/phrasebook#readme",
"keywords": [
"i18next",
"internationalization",
"i18n",
"translation",
"localization",
"l10n",
"globalization",
"phrasebook",
"loveholidays",
"preact",
"react"
],
"author": "",
"license": "LGPL-3.0-or-later",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-transform-object-assign": "^7.16.5",
"@babel/plugin-transform-react-jsx": "^7.16.7",
"@babel/preset-env": "^7.12.16",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@changesets/cli": "^2.22.0",
"@loveholidays/eslint-config-loveholidays": "^33.0.0",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.4.1",
"esbuild": "^0.17.17",
"eslint": "^7.32.0",
"glob": "^7.2.0",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}