-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.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
{
"name": "kth-node-publications-formatters",
"version": "2.1.16",
"description": "This is a utility library for formatting publications in publications-web/api",
"automaticPublish": "true",
"main": "index.js",
"files": [
"index.js",
"helpers"
],
"scripts": {
"test": "mocha",
"build": "npm ci",
"prepare": "bash -c 'if [ -f ./node_modules/.bin/husky ]; then husky install; fi'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KTH/kth-node-publications-formatters.git"
},
"keywords": [],
"author": {
"name": "KTH",
"email": "infosys@kth.se",
"url": "https://github.com/KTH"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/KTH/kth-node-publications-formatters/issues"
},
"homepage": "https://github.com/KTH/kth-node-publications-formatters#readme",
"devDependencies": {
"@kth/eslint-config-kth": "^3.0.10",
"chai": "^4.3.6",
"eslint": "^8.20.0",
"husky": "^7.0.4",
"mocha": "^9.2.2",
"prettier": "^3.3.3",
"pretty-quick": "4.0.0"
},
"peerDependencies": {
"@kth/log": ">=4.0.5"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 120
}
}