-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.45 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "amazon-geotarget",
"version": "1.0.1",
"description": "It detects users' location and returns the right amazon store url.",
"main": "src/index.js",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "cross-env NODE_ENV=test nyc --require babel-register --require isomorphic-fetch --require babel-polyfill --reporter=lcov --reporter=text mocha ./tests/*.js",
"clean": "rm -rf build",
"prepublish": "npm test",
"commit": "git-cz",
"build": "npm run clean && webpack",
"start": "webpack-dev-server --output-public-path=/build/",
"server": "python -m SimpleHTTPServer",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"bin": {
"greeter": "bin/whereabout.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Jun711/amazon-geotarget.git"
},
"keywords": [
"amazon store",
"amazon affiliate",
"geotargeting",
"geolocation",
"location",
"country"
],
"author": "Jun Goh",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jun711/amazon-geotarget/issues"
},
"homepage": "https://github.com/Jun711/amazon-geotarget#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"commitizen": "^2.9.6",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"fetch-mock": "^6.0.0",
"isomorphic-fetch": "^2.2.1",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"puppeteer": "^1.1.1",
"semantic-release": "^12.4.1",
"sinon": "^4.3.0",
"webpack": "^4.1.0",
"webpack-dev-server": "^3.1.0",
"travis-deploy-once": "^4.3.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 99,
"statements": 99,
"functions": 99,
"branches": 99,
"include": [
"src/**/*.js"
],
"require": [
"babel-register",
"isomorphic-fetch",
"babel-polyfill"
],
"sourceMap": false,
"instrument": false
},
"dependencies": {
"geo-amazon": "^0.2.0"
}
}