-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.88 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "addons-scanner-utils",
"version": "15.4.0",
"description": "Various addons related helpers to build CLIs.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./functions": {
"types": "./dist/functions/index.d.ts",
"default": "./dist/functions/index.js"
},
"./functions/*": {
"types": "./dist/functions/*.d.ts",
"default": "./dist/functions/*.js"
},
"./io": {
"types": "./dist/io/index.d.ts",
"default": "./dist/io/index.js"
},
"./io/*": {
"types": "./dist/io/*.d.ts",
"default": "./dist/io/*.js"
},
"./*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"files": [
"dist/**/*"
],
"author": "Mozilla Add-ons Team",
"license": "MPL-2.0",
"dependencies": {
"common-tags": "1.8.2",
"first-chunk-stream": "3.0.0",
"jsonwebtoken": "^9.0.3",
"strip-bom-stream": "4.0.0",
"upath": "3.0.7",
"yauzl": "3.4.0"
},
"peerDependencies": {
"express": "5.2.1",
"safe-compare": "1.1.4"
},
"peerDependenciesMeta": {
"express": {
"optional": true
},
"safe-compare": {
"optional": true
}
},
"devDependencies": {
"@types/common-tags": "^1.8.0",
"@types/express": "5.0.6",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.0.1",
"@types/safe-compare": "^1.1.0",
"@types/supertest": "^7.2.0",
"@types/yauzl": "3.3.0",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "^9.0.0",
"eslint-config-amo": "^8.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-amo": "^3.0.0",
"express": "5.2.1",
"jest": "^30.2.0",
"prettier": "3.8.4",
"pretty-quick": "4.2.2",
"rimraf": "^6.1.0",
"safe-compare": "1.1.4",
"supertest": "^7.0.0",
"ts-jest": "^29.0.0",
"type-coverage": "^2.3.0",
"typescript": "^5.9.3"
},
"scripts": {
"eslint": "eslint src/",
"lint": "npm run eslint",
"prepack": "rimraf dist/ && tsc --outDir dist/ && rimraf -g 'dist/**/*.spec.*' 'dist/*.spec.*'",
"prettier": "prettier --write '**'",
"prettier-ci": "prettier --list-different '**' || (echo '\n\nThis failure means you did not run `npm run prettier-dev` before committing\n\n' && exit 1)",
"prettier-dev": "pretty-quick --branch master",
"test": "jest",
"test-ci": "npm test -- --coverage",
"type-coverage": "type-coverage",
"typecheck": "tsc --noEmit"
},
"homepage": "https://github.com/mozilla/addons-scanner-utils",
"repository": {
"type": "git",
"url": "git://github.com/mozilla/addons-scanner-utils.git"
},
"bugs": {
"url": "http://github.com/mozilla/addons-scanner-utils/issues"
},
"typeCoverage": {
"atLeast": 97
}
}