forked from mozilla-rally/rally-core-addon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 3.02 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
70
71
72
73
74
75
76
77
78
79
{
"name": "rally_core",
"version": "0.7.1",
"scripts": {
"build": "rollup -c && rollup -c rollup.config.addon.js --config-study-list-url=/public/locally-available-studies.json && web-ext build --overwrite-dest && mv web-ext-artifacts/*.zip web-ext-artifacts/rally_core.xpi",
"dev": "rollup -c -w",
"start": "sirv public",
"build-addon": "rollup -c rollup.config.addon.js",
"local-build-addon": "rollup -c rollup.config.addon.js --config-study-list-url=/public/locally-available-studies.json",
"test-addon": "mocha --require \"./tests/hooks.js\" \"./tests/core-addon/unit/*.js\"",
"test-support-library": "mocha --require \"./tests/hooks.js\" \"./tests/support/*.js\"",
"lint-addon": "web-ext lint",
"lint-js": "eslint . .storybook",
"lint": "npm run build && npm-run-all lint-*",
"lint-css": "stylelint 'public/*.css' '.storybook/*.css' 'src/**/*.svelte' 'stories/**/*.svelte'",
"storybook": "start-storybook -p 6006 -s ./",
"build-storybook": "build-storybook -s ./",
"test": "npm run test-addon && npm run test-support-library",
"test-integration": "npm run build && mocha --timeout 30000 \"./tests/core-addon/integration/*.js\""
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@mozilla-protocol/core": "^12.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@storybook/addon-actions": "^6.0.26",
"@storybook/addon-essentials": "^6.0.26",
"@storybook/addon-links": "^6.0.26",
"@storybook/svelte": "^6.0.26",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"eslint": "^7.12.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-svelte3": "^2.7.3",
"geckodriver": "^1.21.0",
"micromodal": "^0.4.6",
"mocha": "^8.1.3",
"npm-run-all": "^4.1.5",
"react-is": "^16.13.1",
"rollup": "^2.3.4",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-svelte": "^6.0.0",
"rollup-plugin-terser": "^7.0.0",
"selenium-webdriver": "^4.0.0-alpha.7",
"sinon-chrome": "^3.0.1",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0",
"svelte": "^3.29.0",
"svelte-accessible-dialog": "^2.1.2",
"svelte-loader": "^2.13.6",
"web-ext": "^5.4.0",
"webextension-polyfill": "^0.7.0"
},
"dependencies": {
"sirv-cli": "^1.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"description": "This is the Rally Core Add-on: a cross-browser WebExtension that allows users to participate to Rally studies.",
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-rally/core-addon.git"
},
"keywords": [],
"author": "Mozilla",
"license": "MPL-2.0",
"private": true,
"bugs": {
"url": "https://github.com/mozilla-rally/core-addon/issues"
},
"homepage": "https://github.com/mozilla-rally/core-addon#readme"
}