-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.86 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "easygooglemaps",
"version": "1.2.3",
"description": "Simple layer over Google Maps API for creating maps with markers and controlled balloons.",
"main": "dist/easygooglemaps.js",
"scripts": {
"precommit": "npm run build",
"build": "rimraf dist && webpack --no-minimize && webpack",
"watch": "rimraf dist && webpack --watch",
"coverage": "babel-node node_modules/isparta/bin/isparta cover node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"coveralls": "npm run coverage && coveralls < coverage/lcov.info && rimraf coverage",
"test": "npm run test-server && npm run test-browser",
"test-server": "mocha test/server --recursive --bail --require babel-core/register mocha.config.js",
"test-browser": "karma start --single-run",
"tdd": "npm run test-server -- --watch",
"tdd-browser": "karma start"
},
"repository": "coderiver/easygooglemaps",
"keywords": [
"google maps",
"markers",
"js",
"easy",
"infobox",
"baloons"
],
"files": [
"dist",
"src"
],
"devDependencies": {
"babel-core": "^6.4.5",
"babel-eslint": "^4.1.4",
"babel-loader": "^6.2.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.3.13",
"eslint": "^1.4.1",
"eslint-plugin-babel": "^3.1.0",
"husky": "^0.10.1",
"mocha-lcov-reporter": "^1.0.0",
"rimraf": "^2.4.3",
"webpack": "^1.12.2",
"webpack-bundle-analyzer": "^2.3.0",
"json-loader": "^0.5.4"
},
"author": {
"name": "Valentin Dorosh",
"email": "[email protected]"
},
"contributors": [
{
"name": "Yuri Artiukh",
"email": "[email protected]",
"url": "http://cssing.org.ua/"
}
],
"engines": {
"node": ">=0.12.0"
},
"license": "MIT",
"dependencies": {
"dot": "^1.1.1",
"google-maps": "^3.2.1",
"google-maps-infobox": "^1.1.14"
}
}