forked from mozilla-rally/study-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.42 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.42 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
{
"name": "rally-study-template",
"version": "0.3.1",
"scripts": {
"build": "rollup -c",
"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\""
},
"devDependencies": {
"@mozilla/rally": "0.0.4",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"eslint": "^7.12.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-mocha": "^8.0.0",
"rollup": "^2.33.1",
"web-ext": "^5.4.0",
"webextension-polyfill": "^0.7.0",
"selenium-webdriver": "^4.0.0-alpha.7",
"geckodriver": "^1.21.0",
"mocha": "^8.1.3"
},
"dependencies": {},
"engines": {
"node": ">=14.0.0"
},
"description": "This a basic template for a Rally study.",
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-rally/study-template.git"
},
"keywords": [],
"author": "Mozilla",
"license": "MPL-2.0",
"private": true,
"bugs": {
"url": "https://github.com/mozilla-rally/study-template/issues"
},
"homepage": "https://github.com/mozilla-rally/study-template#readme"
}