-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 3 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
{
"name": "esper-pioneer-shield-study",
"description": "The ESPER Experiment - Firefox Pioneer Study",
"version": "1.0.4",
"author": "Fredrik Wollsén <[email protected]>",
"addon": {
"ABOUT": "the variables fill the moustache templates",
"id": "[email protected]",
"name": "The ESPER experiment - Firefox Pioneer Study",
"minVersion": "58.0",
"maxVersion": "*",
"multiprocessCompatible": true,
"hasEmbeddedWebExtension": false,
"chromeResource": "esper-pioneer-shield-study",
"creator": "Fredrik Wollsén <[email protected]>",
"description": "The ESPER Experiment - Firefox Pioneer Study",
"bugzilla": "https://bugzilla.mozilla.org/show_bug.cgi?id=1450951"
},
"bugs": {
"url": "https://github.com/motin/esper-pioneer-shield-study/issues"
},
"devDependencies": {
"addons-linter": "^0.28.2",
"ajv": "^5.3.0",
"eslint": "^4.10.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mozilla": "^0.4.5",
"eslint-plugin-no-unsanitized": "^2.0.1",
"fixpack": "^2.3.1",
"fs-extra": "^3.0.1",
"fx-runner": "^1.0.8",
"geckodriver": "^1.9.0",
"get-firefox": "^2.0.0",
"minimist": "^1.2.0",
"mocha": "^3.4.2",
"moustache": "0.0.2",
"npm-run-all": "^4.1.1",
"nsp": "^2.8.1",
"onchange": "^3.2.1",
"pioneer-utils": "^1.0.10",
"prettier": "^1.10.2",
"selenium-webdriver": "^3.5.0"
},
"homepage": "https://github.com/motin/esper-pioneer-shield-study",
"keywords": [
"firefox",
"legacy-addon",
"mozilla",
"pioneer",
"shield-study"
],
"license": "MPL-2.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/motin/esper-pioneer-shield-study.git"
},
"scripts": {
"build": "bash ./bin/xpi.sh",
"eslint": "eslint . --ext jsm --ext js --ext json",
"eslint-fix": "npm run eslint -- --fix",
"firefox": "export XPI=dist/linked-addon.xpi && npm run build && node run-firefox.js",
"format": "prettier '**/*.{css,js,json,jsm,md}' --trailing-comma=all --ignore-path=.eslintignore --write && npm run eslint-fix",
"harness_test": "export XPI=dist/linked-addon.xpi && mocha test/functional_tests.js --retry 2 --reporter json",
"lint": "npm-run-all lint:*",
"lint-build:addons-linter": "# actually a post build test: bin/addonLintTest ' + require('./package.json').name",
"lint:addons-linter": "addons-linter addon",
"lint:eslint": "npm run eslint",
"lint:fixpack": "fixpack",
"lint:nsp": "nsp check",
"prebuild": "cp node_modules/pioneer-utils/dist/PioneerUtils.jsm addon/",
"sign": "echo 'TBD, see: https://bugzilla.mozilla.org/show_bug.cgi?id=1407757'",
"test": "export XPI=dist/linked-addon.xpi && npm run build && mocha test/functional_tests.js --retry 2",
"watch": "onchange 'addon/**' 'package.json' 'template/**' -e addon/install.rdf -e addon/chrome.manifest -e addon/StudyUtils.jsm -- npm run build -- '{{event}} {{changed}} $(date)'"
}
}