-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 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
51
52
53
54
55
{
"name": "@nantis/geolocation-helpers",
"version": "0.0.0-development",
"description": "Geolocation helpers for the Nantis IoT solution",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"keywords": [],
"author": "Nantis GmbH",
"homepage": "nantis.de",
"license": "BSD-3-Clause",
"files": [
"README",
"LICENSE",
"dist",
"package-lock.json"
],
"release": {
"branches": [
"main"
],
"remoteTags": true
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-angular": "11.0.0",
"@nantis/eslint-config-typescript": "1.0.2",
"@nantis/typescript-code-style": "1.2.2",
"@types/jest": "26.0.20",
"@types/node": "14.14.25",
"eslint": "7.19.0",
"husky": "5.0.9",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"pinst": "2.1.4",
"prettier": "2.2.1",
"ts-jest": "26.5.1",
"typescript": "4.1.5"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --ext .js,.ts"
],
"*.{md,json,yaml,yml}": [
"prettier --write"
]
}
}