-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "webextensions-schema",
"version": "0.5.1",
"description": "Programmatically consume the WebExtensions Schema JSON files",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/stoically/webextensions-schema.git"
},
"scripts": {
"build": "npm-run-all lint test build:tsc",
"build:tsc": "tsc -p tsconfig.build.json",
"watch": "tsc --watch",
"lint": "eslint '{src,test}'/**/*.ts",
"test": "ts-mocha --timeout 30000"
},
"keywords": [
"webextensions",
"schemas"
],
"author": "stoically <[email protected]>",
"homepage": "https://github.com/stoically/webextensions-schema",
"bugs": {
"url": "https://github.com/stoically/webextensions-schema/issues"
},
"license": "MPL-2.0",
"files": [
"dist",
"downloads",
".schemas"
],
"types": "dist",
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/request": "^2.48.3",
"@types/unzipper": "^0.10.1",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"mocha": "^6.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"ts-mocha": "^6.0.0",
"typescript": "^3.7.2"
},
"dependencies": {
"request": "^2.88.0",
"strip-json-comments": "^3.0.1",
"unzipper": "^0.10.5"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"singleQuote": true
},
"engines": {
"node": ">=10.0.0"
}
}