This repository has been archived by the owner on Nov 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
67 lines (67 loc) · 2.01 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
{
"name": "dispensary",
"version": "0.70.0",
"description": "SHA-256 Hashes of popular JS libraries, used by Mozilla's Add-ons Linter",
"main": "dist/dispensary.js",
"bin": {
"dispensary": "bin/dispensary"
},
"engines": {
"node": ">=12.21.0"
},
"scripts": {
"build": "npm run clean && webpack",
"clean": "rimraf /dist /coverage",
"eslint": "eslint .",
"prepublishOnly": "npm run test-ci",
"prettier": "pretty-quick --branch master",
"prettier-ci": "prettier -c '**'",
"prettier-full": "prettier --write '**'",
"start": "webpack --watch",
"test": "npm run build && jest tests/ --watch",
"test-coverage": "npm run build && jest tests/ --coverage",
"test-ci": "npm run test-coverage && npm run eslint && npm run prettier-ci",
"update": "npm run build && ./bin/dispensary > src/hashes.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/dispensary.git"
},
"author": "Mozilla Add-ons Team",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla/dispensary/issues"
},
"homepage": "https://github.com/mozilla/dispensary#readme",
"devDependencies": {
"@babel/core": "~7.16.0",
"@babel/plugin-proposal-class-properties": "~7.16.0",
"@babel/plugin-transform-modules-commonjs": "~7.16.0",
"@babel/preset-env": "~7.16.0",
"babel-eslint": "~10.1.0",
"babel-loader": "~8.2.0",
"eslint": "~7.32.0",
"eslint-config-amo": "4.11.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-promise": "5.1.1",
"jest": "27.3.1",
"jest-raw-loader": "1.0.1",
"prettier": "2.4.1",
"pretty-quick": "3.1.1",
"raw-loader": "~4.0.0",
"replace-in-file": "6.3.2",
"rimraf": "3.0.2",
"sinon": "~11.1.0",
"webpack": "~5.61.0",
"webpack-cli": "^4.0.0"
},
"dependencies": {
"async": "~3.2.0",
"natural-compare-lite": "~1.4.0",
"pino": "~6.13.0",
"request": "~2.88.0",
"sha.js": "~2.4.4",
"source-map-support": "~0.5.4",
"yargs": "~17.2.0"
}
}