forked from mozilla-rally/beyond_the_paywall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.19 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
{
"name": "BeyondThePaywall",
"version": "0.1.8",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --config-enable-developer-mode",
"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": "npm-run-all --parallel watch-raw watch-bundled",
"watch-raw": "npm run dev -- -w",
"watch-bundled": "web-ext run --watch-file dist/background.js"
},
"devDependencies": {
"@mozilla/rally": "^0.7.1",
"@mozilla/web-science": "^0.4.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.23.1",
"geckodriver": "^1.21.0",
"globby": "^11.0.3",
"mocha": "^8.1.3",
"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": "^5.5.0",
"webextension-polyfill": "^0.7.0"
},
"engines": {
"node": ">=14.0.0"
},
"description": "A Rally study on how web users interact with different news outlets over time.",
"repository": {
"type": "git",
"url": "git+https://code.stanford.edu/gjmartin/beyond_the_paywall/beyond_the_paywall.git"
},
"keywords": [],
"author": "Researchers at Stanford GSB",
"license": "MPL-2.0",
"private": true,
"bugs": {
"url": "https://code.stanford.edu/gjmartin/beyond_the_paywall/issues"
},
"homepage": "https://code.stanford.edu/gjmartin/beyond_the_paywall/",
"dependencies": {
"@mozilla/readability": "^0.4.1",
"@rollup/plugin-url": "^6.0.0",
"dexie": "^3.0.3",
"hosted-git-info": ">=2.8.9",
"lodash": ">=4.17.21",
"postcss": ">=8.2.10"
}
}