-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.38 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
{
"name": "9now-region-switcher",
"version": "0.0.3",
"description": "Allows a user to determine the region for 9Now TV Guide and Livestreams",
"engines": {
"node": "^5.9.0",
"npm": "^3.7.3"
},
"scripts": {
"build": "npm run clean && npm run webpack && npm run manifest:version && npm run copy",
"clean": "rm -rf ./dist/*",
"copy": "npm run popup:copy && npm run icon:copy && npm run manifest:copy",
"icon:copy": "cp ./src/icon.png ./dist/icon.png",
"lint": "eslint ./webpack/config.babel.js ./src",
"manifest:copy": "cp ./src/manifest.json ./dist/manifest.json",
"manifest:version": "cd ./src && ../node_modules/.bin/mversion $npm_package_version",
"popup:copy": "cp ./src/popup.html ./dist/popup.html",
"version": "NODE_ENV=production npm run build && git add -A .",
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack --config ./webpack/config.babel.js",
"webpack:watch": "npm run clean && npm run copy && webpack --watch --config ./webpack/config.babel.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nhardy/9now-region-switcher.git"
},
"keywords": [
"9now",
"geolocation"
],
"author": "Nathan Hardy",
"license": "MIT",
"bugs": {
"url": "https://github.com/nhardy/9now-region-switcher/issues"
},
"homepage": "https://github.com/nhardy/9now-region-switcher#readme",
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015-node": "^6.1.0",
"babel-preset-modern-browsers": "^5.1.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.2.0",
"eslint-config-nhardy": "^0.1.2",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"imports-loader": "^0.6.5",
"mversion": "^1.10.1",
"style-loader": "^0.13.0",
"stylus": "^0.54.5",
"stylus-loader": "^2.2.0",
"svg-react-loader": "^0.3.3",
"webpack": "^1.12.14",
"whatwg-fetch": "^0.11.0"
},
"dependencies": {
"react": "^15.3.0",
"react-chrome-redux": "0.0.8",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2"
}
}