-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 1.73 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": "@kocal/web-extension-library",
"version": "0.0.0-development",
"description": "A set of functions used for easily write a web extension",
"repository": "https://github.com/Kocal-Web-Extensions/library.git",
"author": "Hugo Alliaume <kocal@live.fr>",
"license": "MIT",
"engines": {
"node": "^10.13.0 || >=12.0.0"
},
"main": "dist/lib/index.js",
"files": [
"dist"
],
"typings": "dist/types/index.d.ts",
"scripts": {
"prepublishOnly": "yarn lint && yarn test && yarn build",
"build": "rimraf dist && tsc --build tsconfig.build.json",
"lint": "tslint --project tsconfig.json",
"test": "jest",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"yarn lint --fix",
"prettier --write"
]
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@kocal/semantic-release-preset": "^2.0.2",
"@types/jest": "^25.2.3",
"@types/node": "^10.17.24",
"@types/qs": "^6.9.3",
"axios-mock-adapter": "^1.18.1",
"codecov": "^3.7.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-date-mock": "^1.0.8",
"jest-webextension-mock": "^3.5.4",
"lint-staged": "^10.2.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.7",
"ts-jest": "^26.0.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3",
"vuepress": "^1.5.0",
"web-ext-types": "^3.2.1"
},
"dependencies": {
"axios": "^0.18.0",
"qs": "^6.9.3",
"webextension-polyfill": "^0.6.0"
}
}