-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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": "geo-for-http",
"version": "0.0.8",
"description": "a small tool to getCurrentPosition in http protocol",
"main": "./lib/geo.js",
"scripts": {
"dev": "webpack-dev-server -d --content-base dist/ --hot --progress --colors",
"build": "rimraf lib && babel src --copy-files --extensions .js --out-dir lib && uglifyjs ./lib/geo.js -o ./lib/geo.min.js --source-map ./lib/geo.min.js.map"
},
"author": "zyf394",
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.6",
"zepto": "^1.0.1"
},
"devDependencies": {
"autoprefixer": "^6.5.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"css-loader": "^0.23.1",
"ejs-loader": "^0.3.0",
"eslint": "^3.11.1",
"eslint-config-standard": "^6.2.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"file-loader": "^0.8.5",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.12.0",
"less": "^2.6.1",
"less-loader": "^2.2.2",
"postcss-loader": "^1.1.1",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"uglify-js": "^2.7.5",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"repository": {
"type": "git",
"url": "[email protected]:zyf394/geo-for-http.git"
},
"keywords": [
"geo",
"getCurrentPosition",
"location"
]
}