-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.05 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
{
"name": "redux-browser-geolocation",
"version": "1.0.4",
"description": "HTML5 Geolocation api for redux",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build": "npm run build:commonjs && npm run build:es",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"lib",
"src",
"es"
],
"repository": {
"type": "git",
"url": "git+https://github.com/IagoLast/redux-browser-geolocation.git"
},
"author": "@iagolast",
"license": "MIT",
"bugs": {
"url": "https://github.com/IagoLast/redux-browser-geolocation/issues"
},
"homepage": "https://github.com/IagoLast/redux-browser-geolocation#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^5.0.0",
"eslint": "^3.19.0"
}
}