-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "webextensions-api-fake",
"version": "1.2.0",
"description": "In-memory WebExtensions API Fake Implementation for testing purposes",
"main": "dist/index.js",
"types": "dist",
"repository": {
"type": "git",
"url": "git+https://github.com/webexts/webextensions-api-fake.git"
},
"dependencies": {
"webextensions-api-mock": "^1.0.0"
},
"peerDependencies": {
"sinon": "^8.1.1"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/firefox-webext-browser": "^70.0.1",
"@types/mocha": "^5.2.7",
"@types/node": "^13.5.0",
"@types/sinon": "^7.5.1",
"@types/sinon-chai": "^3.2.3",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^7.0.1",
"prettier": "^1.19.1",
"require-reload": "^0.2.2",
"sinon": "^8.1.1",
"sinon-chai": "^3.4.0",
"typescript": "^3.7.5"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"example": "npm run build && mocha examples/**/*.test.js"
},
"homepage": "https://github.com/webexts/webextensions-api-fake",
"author": "stoically <[email protected]>",
"bugs": {
"url": "https://github.com/webexts/webextensions-api-fake/issues"
},
"license": "MPL-2.0",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"singleQuote": true
}
}