forked from Christop406/vladdress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 KB
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
{
"name": "vladdress",
"version": "1.1.3",
"description": "Lightweight Street Address Parser Written in TypeScript",
"main": "build/index.js",
"scripts": {
"pretest": "eslint test/**/*.ts --fix",
"test": "mocha --reporter spec",
"start": "ts-node src/index.ts",
"lint": "eslint src/**/*.ts --fix",
"prepublish": "npm run build",
"build": "rimraf build && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Christop406/vladdress.git"
},
"keywords": [
"address",
"parser",
"street"
],
"files": [
"build/**/*"
],
"types": "build/index.d.ts",
"author": "Chris Gilardi <chris.gilardi@vidaloop.com> (https://chrisgilardi.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Christop406/vladdress/issues"
},
"homepage": "https://github.com/Christop406/vladdress#readme",
"devDependencies": {
"@types/chai": "^4.2.17",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4.3.4",
"coveralls": "^3.0.2",
"eslint": "^7.25.0",
"istanbul": "^0.4.5",
"mocha": "^8.3.2",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}