-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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
{
"name": "swiss-address-parser",
"displayName": "@cytex/swiss-address-parser",
"version": "0.2.1",
"description": "parses 🇨🇭 address strings into structured data",
"keywords": [
"switzerland",
"address parser",
"geocoding",
"geocoder",
"swiss address",
"typescript",
"javascript",
"nodejs"
],
"license": "MIT",
"author": "Cytex Media Solutions",
"maintainers": [
{
"name": "Simon Jutz",
"email": "simon.jutz@cytex.ch",
"url": "https://github.com/sjutz"
}
],
"main": "build/index.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "tsc",
"clean": "gts clean",
"compile": "tsc",
"coverage": "jest --coverage --testPathIgnorePatterns \"build/\" --runInBand --verbose",
"coverage-report": "open coverage/lcov-report/index.html",
"fix": "gts fix",
"lint": "gts lint",
"prepare": "npm run compile",
"pretest": "npm run compile",
"test": "jest --testPathIgnorePatterns \"build/\" --runInBand --verbose",
"posttest": "npm run lint",
"publish-package": "npm version patch --force && npm publish"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.22.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^29.5.4",
"@types/node": "20.4.6",
"eslint": "^8.48.0",
"eslint-plugin-jest": "^27.2.3",
"gts": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "10.9.1",
"typescript": "~5.1.6"
},
"engines": {
"node": ">=14.0.0"
},
"readme": "README.md"
}