forked from Cyberuben/node-postcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 928 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": "node-postcode",
"version": "1.0.0",
"description": "API wrapper for the Postcode.nl APIs",
"main": "lib/postcode.js",
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"test": "npm run compile && mocha test/test.js --recursive --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cyberuben/node-postcode.git"
},
"author": "Ruben Rutten <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Cyberuben/node-postcode/issues"
},
"keywords": [
"postcode",
"postcode.nl",
"address"
],
"homepage": "https://github.com/Cyberuben/node-postcode#readme",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"mocha": "^2.5.3"
}
}