-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 880 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 880 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
{
"name": "format-location",
"version": "1.1.2",
"description": "Format location objects in a number of standard ways",
"author": "Good Eggs <open-source@goodeggs.com>",
"contributors": [
"Max Edmands <me@maxedmands.com>"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/goodeggs/format-location.git"
},
"homepage": "https://github.com/goodeggs/format-location",
"bugs": "https://github.com/goodeggs/format-location/issues",
"devDependencies": {
"coffee-script": ">=1.7.x",
"mocha": "^1.x.x",
"chai": "^1.9.1"
},
"scripts": {
"compile": "coffee --bare --compile --output lib/ src/",
"build": "npm run compile",
"test": "mocha",
"pretest": "npm run build"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"always-auth": true
}
}