-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.6 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
{
"name": "@prepair/get-location",
"version": "1.2.1",
"description": "Get geolocation with a promise.",
"main": "lib/get-location.js",
"scripts": {
"lint": "eslint src",
"test": "cross-env NODE_ENV=test mocha --opts ./mocha.opts",
"test:watch": "npm t -- --watch --reporter min",
"build": "shx rm -rf lib && babel src --ignore spec.js -d lib",
"precommit": "npm run lint && npm test",
"release": "npm run build && git status --porcelain && git checkout master && git pull origin master && standard-version && git push --follow-tags origin master && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prepair/get-location.git"
},
"keywords": [
"geolocation"
],
"author": "prepair",
"license": "MIT",
"bugs": {
"url": "https://github.com/prepair/get-location/issues"
},
"homepage": "https://github.com/prepair/get-location#readme",
"devDependencies": {
"babel-cli": "6.22.2",
"babel-core": "6.22.1",
"babel-polyfill": "6.22.0",
"babel-preset-es2015-ie": "6.6.2",
"babel-preset-stage-0": "6.22.0",
"chai": "3.5.0",
"co-mocha": "1.2.0",
"cross-env": "3.1.4",
"eslint": "3.14.0",
"eslint-config-semistandard": "7.0.0",
"eslint-config-standard": "6.2.1",
"eslint-plugin-promise": "3.4.0",
"eslint-plugin-react": "6.9.0",
"eslint-plugin-standard": "2.0.1",
"gulp": "3.9.1",
"husky": "0.13.1",
"mocha": "3.2.0",
"shx": "0.2.2",
"sinon": "1.17.7",
"sinon-chai": "2.8.0",
"standard-version": "4.0.0"
},
"directories": {
"test": "test"
}
}