This repository has been archived by the owner on Feb 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
159 lines (159 loc) · 7.88 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "hovercards",
"description": "Get more content. Open fewer tabs.",
"homepage": "http://hovercards.com",
"bugs": {
"url": "https://github.com/kogg/hovercards/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kogg/hovercards.git"
},
"scripts": {
"prebuild": "npm run clean",
"build": "run-s build:*",
"build:extension": "NODE_ENV=production webpack -p --config webpack.config.extension.js",
"build:www": "NODE_ENV=production webpack -p --config webpack.config.www.js",
"check": "run-s check:*",
"check:css": "stylelint \"**/*.css\" --color --ignore-path .gitignore",
"check:js": "eslint . --color --ignore-path .gitignore --ignore-pattern 'integrations/**'",
"clean": "rm -rf coverage dist dist-* dump.rdb npm-debug.log* && npm cache clean",
"coverage:check": "istanbul check-coverage --statements 75 --branches 75 --functions 75 --lines 75",
"coverage:report": "cat ./coverage/lcov.info | codecov",
"fix": "run-s fix:*",
"postfix": "git diff --staged --name-only --diff-filter=ACMRTUXB | xargs git add",
"fix:css": "git diff --staged --name-only --diff-filter=ACMRTUXB | grep \"\\.css$\" | xargs stylefmt --config .stylelintrc",
"fix:js": "git diff --staged --name-only --diff-filter=ACMRTUXB | grep \"\\.js$\" | xargs eslint --fix --color",
"prerelease": "semantic-release pre && npm run build",
"release": "run-s release:*",
"postrelease": "semantic-release post",
"release:extension": "webstore upload --source dist --extension-id dighmiipfpfdfbfmpodcmfdgkkcakbco --auto-publish --client-id $CHROME_CLIENT_ID --client-secret $CHROME_CLIENT_SECRET --refresh-token $CHROME_REFRESH_TOKEN",
"release:npm": "npm publish",
"release:sentry": "curl https://sentry.io/api/0/projects/kogg/hovercards/releases/ -X POST -H \"Authorization: Bearer $SENTRY_AUTH_TOKEN\" -H \"Content-Type: application/json\" --data \"{\\\"version\\\": \\\"$npm_package_version\\\"}\" --include && run-s release:sentry:*",
"release:sentry:background": "curl https://sentry.io/api/0/projects/kogg/hovercards/releases/$npm_package_version/files/ -X POST -H \"Authorization: Bearer $SENTRY_AUTH_TOKEN\" -F file=@dist/background.js -F name=\"chrome-extension://$CHROME_EXTENSION_ID/background.js\" --include",
"release:sentry:background-map": "curl https://sentry.io/api/0/projects/kogg/hovercards/releases/$npm_package_version/files/ -X POST -H \"Authorization: Bearer $SENTRY_AUTH_TOKEN\" -F file=@dist/background.js.map -F name=\"background.js.map\" --include",
"release:sentry:common": "curl https://sentry.io/api/0/projects/kogg/hovercards/releases/$npm_package_version/files/ -X POST -H \"Authorization: Bearer $SENTRY_AUTH_TOKEN\" -F file=@dist/common.js -F name=\"chrome-extension://$CHROME_EXTENSION_ID/common.js\" --include",
"release:sentry:common-map": "curl https://sentry.io/api/0/projects/kogg/hovercards/releases/$npm_package_version/files/ -X POST -H \"Authorization: Bearer $SENTRY_AUTH_TOKEN\" -F file=@dist/common.js.map -F name=\"common.js.map\" --include",
"release:sentry:options": "curl https://sentry.io/api/0/projects/kogg/hovercards/releases/$npm_package_version/files/ -X POST -H \"Authorization: Bearer $SENTRY_AUTH_TOKEN\" -F file=@dist/options.js -F name=\"chrome-extension://$CHROME_EXTENSION_ID/options.js\" --include",
"release:sentry:options-map": "curl https://sentry.io/api/0/projects/kogg/hovercards/releases/$npm_package_version/files/ -X POST -H \"Authorization: Bearer $SENTRY_AUTH_TOKEN\" -F file=@dist/options.js.map -F name=\"options.js.map\" --include",
"release:sentry:top-frame": "curl https://sentry.io/api/0/projects/kogg/hovercards/releases/$npm_package_version/files/ -X POST -H \"Authorization: Bearer $SENTRY_AUTH_TOKEN\" -F file=@dist/top-frame.js -F name=\"chrome-extension://$CHROME_EXTENSION_ID/top-frame.js\" --include",
"release:sentry:top-frame-map": "curl https://sentry.io/api/0/projects/kogg/hovercards/releases/$npm_package_version/files/ -X POST -H \"Authorization: Bearer $SENTRY_AUTH_TOKEN\" -F file=@dist/top-frame.js.map -F name=\"top-frame.js.map\" --include",
"release:www": "git config --global user.email \"[email protected]\" && git config --global user.name \"Kogg\" && gh-pages --dist dist-www --repo https://[email protected]/kogg/hovercards.git",
"start": "if [ \"$NODE_ENV\" = 'production' ]; then foreman start; else foreman start -f Procfile.dev; fi",
"test": "run-s test:*",
"test:unit": "istanbul cover -x *.test.js _mocha -- -R spec \"./{,!(node_modules)/**/}*.test.js\""
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run fix && npm run check",
"commit-msg": "validate-commit-msg"
},
"validate-commit-msg": {
"helpMessage": "Install commitizen and use `git cz` instead of `git commit` https://github.com/commitizen/cz-cli#installing-the-command-line-tool"
}
},
"dependencies": {
"async": "^2.0.1",
"autolinker": "^1.1.0",
"cheerio": "^0.22.0",
"classnames": "^2.2.5",
"compression": "^1.6.2",
"connect-redis": "^3.0.2",
"es6-promisify": "^5.0.0",
"express-session": "^1.14.1",
"feathers": "^2.0.1",
"feathers-errors": "^2.4.0",
"flux-standard-action": "^1.0.0",
"googleapis": "^14.0.0",
"helmet": "^3.0.0",
"instagram-node": "^0.5.8",
"jquery": "^3.1.0",
"open-graph-scraper": "^2.3.2",
"passport": "^0.3.2",
"passport-twitter": "^1.0.3",
"raven": "^0.12.1",
"raven-js": "^3.7.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"redis": "^2.4.2",
"redux": "^3.5.2",
"redux-actions": "^0.13.0",
"redux-thunk": "^2.1.0",
"request": "^2.74.0",
"reselect": "^2.5.3",
"snoocore": "^3.2.0",
"string.prototype.endswith": "^0.2.0",
"twit": "^2.1.1",
"underscore": "^1.8.3",
"universal-analytics": "^0.4.2",
"urijs": "^1.17.0"
},
"devDependencies": {
"autoprefixer": "^6.4.1",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-es2015-computed-properties": "^6.8.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-react": "^6.11.1",
"bell-on-bundler-error-plugin": "^1.0.8",
"chai": "^3.3.0",
"chai-as-promised": "^6.0.0",
"chrome-webstore-upload-cli": "^1.1.0",
"clean-webpack-plugin": "^0.1.13",
"codecov.io": "^0.1.6",
"copy-webpack-plugin": "^4.0.0",
"css-loader": "^0.25.0",
"cz-conventional-changelog": "^1.2.0",
"deep-diff": "^0.3.4",
"eslint": "^3.6.0",
"eslint-config-xo": "^0.17.0",
"eslint-plugin-react": "^6.4.1",
"extract-text-webpack-plugin": "^1.0.1",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^0.9.0",
"gh-pages": "^0.11.0",
"ghooks": "^1.3.2",
"html-webpack-plugin": "^2.22.0",
"html-webpack-template": "^5.4.1",
"image-webpack-loader": "^3.0.0",
"istanbul": "^0.4.5",
"json-loader": "^0.5.4",
"last-release-github": "^1.1.1",
"mocha": "^3.1.1",
"nock": "^9.0.0",
"node-fetch": "^1.6.0",
"nodemon": "^1.10.2",
"npm-run-all": "^3.1.0",
"postcss-increase-specificity": "^0.3.0",
"postcss-loader": "^1.0.0",
"postcss-nested": "^1.0.0",
"postcss-raw": "^0.1.2",
"postcss-safe-important": "^1.0.4",
"semantic-release": "^4.3.5",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"string-replace-webpack-plugin": "0.0.4",
"style-loader": "^0.13.1",
"stylefmt": "^4.2.3",
"stylelint": "^7.4.2",
"stylelint-config-standard": "^14.0.0",
"url-loader": "^0.5.7",
"validate-commit-msg": "^2.8.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.1",
"webpack-dotenv-plugin": "^1.3.2",
"write-file-webpack-plugin": "^3.3.0"
},
"engines": {
"node": "^6.1.0",
"npm": "^3.9.0"
},
"release": {
"getLastRelease": "last-release-github"
}
}