-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.15 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
43
44
45
46
47
48
49
50
51
{
"name": "gmap",
"version": "1.0.1",
"description": "Google Maps' Unofficial Url Wrapper",
"homepage": "https://github.com/dawsonbotsford/gmap",
"author": {
"name": "Dawson Botsford",
"email": "[email protected]",
"url": "http://dawsonbotsford.com"
},
"files": [
"dist"
],
"main": "dist/index.js",
"keywords": [
"google",
"maps",
"api",
"navigation",
"map",
"transportation",
"traffic",
"travel"
],
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^4.1.8",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.11.0",
"chai": "^3.5.0",
"coveralls": "^2.11.11",
"eslint": "^2.1.0",
"eslint-cli": "^1.1.0",
"eslint-config-xo-space": "^0.14.0",
"mocha": "^2.5.3",
"nyc": "^7.0.0"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
}
},
"repository": "dawsonbotsford/gmap",
"scripts": {
"test": "eslint lib && npm run prepublish && nyc mocha -t 15000",
"prepublish": "babel lib --out-dir=dist",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"license": "MIT"
}