-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "@kinde-oss/kinde-translations",
"version": "0.0.1",
"description": "Translations for Kinde user facing flows",
"private": true,
"author": {
"name": "Kinde",
"email": "[email protected]",
"url": "https://kinde.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kinde-oss/kinde-translations"
},
"bugs": "https://github.com/kinde-oss/kinde-translations/issues",
"homepage": "https://kinde.com",
"license": "MIT",
"keywords": [
"Kinde",
"i18n",
"multi-language",
"translations"
],
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"prettier": "^3.0.3"
},
"scripts": {
"validate": "python3 validate-json.py auth-schema.json $npm_config_file;",
"prepare": "husky install",
"lint": "prettier --write"
},
"preinstall": "echo 'Before running the validation script locally, please ensure you have Python 3 installed. Also, please install the `jsonschema` package by running `pip3 install jsonschema`.'",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false
},
"lint-staged": {
"*.{js,json,md}": "prettier --write"
}
}