forked from mozilla/activity-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
175 lines (175 loc) · 6.14 KB
/
package.json
File metadata and controls
175 lines (175 loc) · 6.14 KB
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
{
"name": "activity-streams",
"description": "A rich visual history feed and a reimagined home page make it easier than ever to find exactly what you're looking for in Firefox.\n\nLearn more about this Test Pilot experiment at https://testpilot.firefox.com/.",
"version": "1.0.16",
"author": "Mozilla (https://mozilla.org/)",
"bugs": {
"url": "https://github.com/mozilla/activity-stream/issues"
},
"dependencies": {
"classnames": "2.2.3",
"fancy-dedupe": "0.1.0",
"history": "1.17.0",
"moment": "2.11.2",
"react": "0.14.8",
"react-dom": "0.14.8",
"react-json-inspector": "6.1.3",
"react-redux": "4.1.2",
"react-router": "1.0.3",
"redux": "3.2.0",
"redux-logger": "2.4.0",
"redux-thunk": "1.0.3",
"reselect": "2.0.3",
"url-parse": "1.0.5"
},
"devDependencies": {
"babel": "6.3.26",
"babel-core": "6.4.5",
"babel-loader": "6.2.1",
"babel-plugin-transform-es2015-destructuring": "6.4.0",
"babel-plugin-transform-es2015-parameters": "6.4.5",
"babel-plugin-transform-strict-mode": "6.3.13",
"babel-preset-react": "6.3.13",
"chai": "3.5.0",
"conventional-changelog-cli": "1.1.1",
"cpx": "1.2.1",
"eslint": "2.2.0",
"eslint-plugin-mozilla": "0.0.3",
"eslint-plugin-react": "4.1.0",
"faker": "3.0.1",
"husky": "0.10.2",
"istanbul-instrumenter-loader": "0.1.3",
"jpm": "1.0.5",
"jscs": "2.9.0",
"json-loader": "0.5.4",
"karma": "0.13.19",
"karma-chrome-launcher": "0.2.2",
"karma-coverage": "0.5.3",
"karma-coveralls": "1.1.2",
"karma-firefox-launcher": "0.1.7",
"karma-html2js-preprocessor": "0.1.0",
"karma-mocha": "0.2.1",
"karma-mocha-reporter": "1.1.5",
"karma-requirejs": "0.2.4",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.7.0",
"live-server": "0.9.1",
"minimist": "1.2.0",
"mkdirp": "0.5.1",
"mocha": "2.4.5",
"node-sass": "3.4.2",
"npm-run-all": "1.5.1",
"react-addons-test-utils": "0.14.7",
"requirejs": "2.1.22",
"rimraf": "2.5.2",
"sass-lint": "1.7.0",
"tippy-top-sites": "0.1.0",
"webpack": "1.12.12",
"webpack-env-loader-plugin": "0.1.4",
"webpack-notifier": "1.2.1",
"yamscripts": "0.0.2"
},
"engines": {
"firefox": ">=45.0 <=*"
},
"homepage": "https://github.com/mozilla/activity-stream",
"icon": "resource://activity-streams/data/content/img/ActivityStream-32.svg",
"keywords": [
"mozilla",
"firefox",
"activity-stream"
],
"license": "MPL-2.0",
"main": "lib/main.js",
"preferences": [
{
"name": "performance.log",
"title": "Enable Performance Logging",
"type": "bool",
"value": false
},
{
"name": "query.cache",
"title": "Enable query caching mode",
"type": "bool",
"value": true,
"hidden": true
},
{
"name": "previews.enabled",
"title": "Enable rich link previews",
"type": "bool",
"value": true
},
{
"name": "telemetry",
"title": "Enable system error and usage data collection",
"type": "bool",
"value": true
},
{
"name": "query.blockedURLs",
"title": "Blocked URLs",
"type": "string",
"value": "[]",
"hidden": true
},
{
"name": "telemetry.ping.endpoint",
"title": "Telemetry server endpoint",
"type": "string",
"value": "https://tiles.services.mozilla.com/v3/links/activity-stream",
"hidden": true
},
{
"name": "embedly.endpoint",
"title": "Embedly Endpoint",
"type": "string",
"value": "https://embedly-proxy.services.mozilla.com/v2/extract",
"hidden": true
}
],
"repository": "mozilla/activity-stream",
"scripts": {
"once": "npm run bundle && npm run firefox",
"clean": "rimraf data/content/* && mkdirp data/content",
"changelog": "conventional-changelog -i CHANGELOG.md -s",
"copyTestImages": "cpx \"node_modules/tippy-top-sites/images/**/*\" data/content/favicons/images",
"copyTopSitesJson": "cpx \"node_modules/tippy-top-sites/top_sites.json\" data/content/favicons",
"bundle": "npm-run-all bundle:*",
"prebundle": "npm run clean && npm run copyTestImages && npm run copyTopSitesJson",
"bundle:static": "cpx \"content-src/static/**/*\" data/content",
"bundle:webpack": "NODE_ENV=production webpack",
"bundle:css": "node-sass content-src/main.scss -o data/content",
"bundle:html": "node ./bin/generate-html.js > data/content/activity-streams.html",
"postbundle": "du -hs ./data/content/*",
"start": "npm-run-all --parallel start:*",
"prestart": "npm run clean && npm run copyTestImages && npm run copyTopSitesJson",
"start:static": "npm run bundle:static -- -w",
"start:webpack": "webpack -w",
"start:css": "npm run bundle:css && npm run bundle:css -- -w",
"start:html": "npm run bundle:html -- --baseUrl http://localhost:1963/ --csp off",
"start:server": "live-server data/content --port=1963 --no-browser",
"firefox": "jpm run --prefs ./dev-prefs.json",
"test": "npm-run-all test:*",
"pretest": "npm run bundle && npm run copyTestImages && npm run copyTopSitesJson",
"test:lint": "eslint . && jscs . && sass-lint -v -q",
"test:checkbinary": "echo \"JPM_FIREFOX_BINARY: ${JPM_FIREFOX_BINARY}\"",
"test:jpm": "jpm test -b ${JPM_FIREFOX_BINARY:-\"firefox\"} --prefs ./test-prefs.json",
"test:karma": "NODE_ENV=test karma start",
"posttest": "cat logs/reports/coverage/text-summary.txt",
"tdd": "npm run test:karma -- --no-single-run --browsers Chrome",
"package": "npm run bundle && jpm xpi && mv @activity-streams-$npm_package_version.xpi dist/activity-streams-$npm_package_version.xpi",
"travis": "npm run test",
"precommit": "npm run test:lint && npm run yamscripts",
"help": "yamscripts help",
"yamscripts": "yamscripts compile",
"__": "# NOTE: THESE SCRIPTS ARE COMPILED!!! EDIT yamscripts.yml instead!!!"
},
"title": "Activity Stream",
"updateLink": "https://moz-activity-streams.s3.amazonaws.com/dist/activity-streams-latest.xpi",
"updateURL": "https://moz-activity-streams.s3.amazonaws.com/dist/update.rdf",
"permissions": {
"private-browsing": true
}
}