-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
34 lines (34 loc) · 866 Bytes
/
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
{
"name": "switzerland-postal-codes",
"version": "5.0.1",
"description": "Switzerland postal codes Javascript module",
"keywords": [
"switzerland",
"postal",
"codes",
"zip"
],
"author": "William Belle <[email protected]>",
"license": "MIT",
"repository": "williambelle/switzerland-postal-codes",
"engines": {
"node": ">=10"
},
"main": "dist-node/index.js",
"scripts": {
"test": "eslint . && mocha",
"coverage": "nyc mocha",
"coveralls": "npm run coverage && nyc report --reporter=lcov"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.29.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0"
}
}