-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 709 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 709 Bytes
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
{
"name": "dutch-postcode-regex",
"version": "1.0.0",
"description": "Regular expression for matching Dutch postcodes",
"license": "MIT",
"repository": "martinvd/dutch-postcode-regex",
"author": {
"name": "Martin van Driel",
"email": "martinvd@gmail.com",
"url": "https://martinvandriel.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"dutch",
"netherlands",
"nederlands",
"postcode",
"zipcode",
"regex",
"regexp",
"match",
"test",
"find",
"validate"
],
"devDependencies": {
"ava": "*",
"xo": "*"
},
"xo": {
"space": true
}
}