-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "postal-code-helpers",
"version": "1.0.13",
"description": "Helpers for intl. postal codes.",
"main": "./dist/index.js",
"scripts": {
"test": "mocha --require @babel/register",
"build": "babel src --presets @babel/preset-env --plugins @babel/plugin-transform-runtime --out-dir dist --copy-files",
"prepublish": "npm run build"
},
"keywords": [
"postcode",
"postal code",
"postal",
"postcode validation",
"postcode extraction"
],
"author": "Stephan Georg <[email protected]>",
"license": "MIT",
"repository": "github:StephanGeorg/postal-code-helpers",
"bugs": {
"url": "https://github.com/StephanGeorg/postal-code-helpers/issues"
},
"homepage": "https://github.com/StephanGeorg/postal-code-helpers#readme",
"dependencies": {
"@babel/runtime": "^7.18.9"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-stage-2": "^7.8.3",
"@babel/register": "^7.18.9",
"chai": "^4.3.6",
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0"
}
}