-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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
{
"name": "tab-glutton",
"version": "2.3.0",
"description": "A Google Chrome tab management extension",
"main": "background.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf bundles && NODE_ENV=production webpack --progress --colors",
"bundle": "rm -rf dist; mkdir dist; cp -R bundles img lib pages LICENSE manifest.json dist",
"version": "npm run version:manifest && npm run build && npm run bundle && git add .",
"postversion": "git push && git push --tags",
"version:manifest": "node update-manifest",
"start": "webpack --progress --colors --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nsand/tab-glutton.git"
},
"keywords": [
"chrome",
"extension",
"tab",
"management"
],
"author": "Nick Sandonato <nick.sandonato@gmail.com>",
"contributors": [
"Yury Shapkarin <yury@shapkarin.me> (http://shapkarin.me/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nsand/tab-glutton/issues"
},
"homepage": "https://github.com/nsand/tab-glutton#readme",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.22.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-is": "^16.12.0",
"styled-components": "^5.0.0"
}
}