-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.27 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
{
"name": "kth-node-i18n",
"version": "1.0.2",
"description": "i18n module for both browser and Node.js.",
"automaticPublish": "true",
"main": "index.js",
"author": {
"name": "KTH",
"email": "[email protected]",
"url": "https://github.com/KTH"
},
"license": "MIT",
"scripts": {
"lint": "eslint \"**/*.js\" --quiet",
"lint-v": "eslint \"**/*.js\" ",
"test": "jest",
"jest": "jest",
"build": "./build.sh",
"prepare": "bash -c 'if [ -f ./node_modules/.bin/husky ]; then husky install; fi'"
},
"repository": {
"type": "git",
"url": "https://github.com/KTH/kth-node-i18n"
},
"keywords": [
"node",
"i18n"
],
"devDependencies": {
"@kth/eslint-config-kth": "^3.0.10",
"eslint": "^8.26.0",
"husky": "^8.0.1",
"jest": "^29.2.2",
"jest-extended": "^4.0.2",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3"
},
"jest": {
"clearMocks": true,
"setupFilesAfterEnv": [
"jest-extended/all"
],
"testEnvironment": "node",
"verbose": true
},
"// (prettier)": "configuration version 2020-06-15 - might also reside in .prettierrc.json",
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}