-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 2.12 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
{
"name": "princeton-university-news-study",
"version": "3.1.0",
"scripts": {
"build": "rollup -c rollup.config.js",
"dev": "rollup -w --config-enable-developer-mode -c rollup.config.js",
"watch": "npm-run-all --parallel dev watch-bundled",
"docs": "jsdoc . -c jsdoc-conf.json",
"lint": "eslint . && web-ext lint",
"package": "npm run build && web-ext build --overwrite-dest --ignore-files \"./tests/**/*\" --ignore-files \"./src/**/*\" --ignore-files \"./rollup.config.js\"",
"start": "npm run build && web-ext run",
"test-integration": "npm run package && mv web-ext-artifacts/*.zip web-ext-artifacts/study.xpi && mocha --timeout 30000 \"./tests/integration/*.js\"",
"watch-bundled": "web-ext run --watch-file dist/background.js dist/aggregateStatistics.worker.js dist/polClassifier.worker.js dist/covidClassifier.worker.js"
},
"dependencies": {
"dexie": "^3.0.3",
"n-gram": "^2.0.1",
"@mozilla/readability": "^0.4.1"
},
"devDependencies": {
"@mozilla/rally": "0.6.0",
"@mozilla/web-science": "^0.5.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.3.4",
"eslint": "^7.12.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"geckodriver": "^1.21.0",
"mocha": "^8.1.3",
"globby": "^11.0.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.38.0",
"rollup-plugin-copy": "^3.4.0",
"selenium-webdriver": "^4.0.0-alpha.7",
"web-ext": "^6.1.0",
"webextension-polyfill": "^0.7.0"
},
"engines": {
"node": ">=14.0.0"
},
"description": "A Rally study on how web users engage with news about politics and COVID-19.",
"repository": {
"type": "git",
"url": "git+https://github.com/citp/news-disinformation-study.git"
},
"keywords": [],
"author": "Princeton University Center for Information Technology Policy",
"license": "MPL-2.0",
"private": true,
"bugs": {
"url": "https://github.com/citp/news-disinformation-study/issues"
},
"homepage": "https://github.com/citp/news-disinformation-study#readme"
}