This repository has been archived by the owner on Jul 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 2.2 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
{
"name": "@mozilla/web-science",
"version": "0.5.3",
"scripts": {
"lint": "eslint .",
"test:integration:jest": "jest ./tests/integration/",
"test:integration": "./scripts/integration-test.sh",
"docs": "jsdoc -c .jsdoc.json",
"gh-pages": "gh-pages --dist public"
},
"dependencies": {
"@mozilla/readability": "^0.4.1",
"@rollup/plugin-commonjs": "22.0.1",
"@rollup/plugin-node-resolve": "^13.0.0",
"globby": "^13.1.0",
"js-base64": "^3.6.0",
"jsdom": "^20.0.0",
"rollup": "^2.41.4",
"rollup-plugin-copy": "^3.4.0",
"tldts": "^5.7.25",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.4.1",
"@types/minimist": "^1.2.2",
"@types/selenium-webdriver": "^4.0.18",
"chromedriver": "^104.0.0",
"eslint": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^10.0.1",
"eslint-plugin-node": "^11.1.0",
"geckodriver": "^3.0.1",
"gh-pages": "^4.0.0",
"globby": "^13.1.0",
"http-server": "^14.1.0",
"jest": "^27.5.1",
"js-base64": "^3.6.0",
"jsdoc": "^3.6.7",
"npm-run-all": "^4.1.5",
"rollup": "^2.41.4",
"rollup-plugin-copy": "^3.4.0",
"selenium-webdriver": "^4.1.1",
"ts-jest": "^27.1.4"
},
"engines": {
"node": ">=14.0.0"
},
"browser": "./src/webScience.js",
"exports": {
".": "./src/webScience.js",
"./rollup-plugin": "./rollup-plugin.js"
},
"description": "WebScience is a library for building browser-based research studies.",
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-rally/web-science"
},
"keywords": [],
"author": "Princeton University Researchers and Mozilla",
"license": "Apache-2.0",
"private": false,
"bugs": {
"url": "https://github.com/mozilla-rally/web-science/issues"
},
"homepage": "https://github.com/mozilla-rally/web-science#readme"
}