-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.16 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "browsability",
"description": "browsability",
"version": "0.5.0",
"license": "MIT",
"repository": "j-m/browsability",
"author": {
"name": "Jonathan Marsh",
"email": "[email protected]",
"url": "https://www.jonmarsh.dev"
},
"bugs": "https://github.com/j-m/browsability/issues",
"homepage": "https://github.com/j-m/browsability",
"keywords": [
"browser",
"compatibility",
"analyser",
"html",
"css",
"javascript"
],
"engines": {
"node": ">=16.0.0"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": {
"browsability": "./bin/run"
},
"files": [
"/bin",
"/lib",
"/typings",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rimraf lib typings",
"commit": "cz",
"compile": "tsc --project src/tsconfig.json",
"lint:fix": "npm run lint -- --fix && prettier --write ./src/**/*.ts",
"lint": "eslint --config ./src/.eslintrc ./src --ext .ts",
"prepare": "husky install config/husky",
"test:unit": "jest --config=config/jest.config.js",
"test:integration": "node bin/run --config ./docs/",
"test": "npm run test:unit",
"version": "conventional-changelog -p angular -i docs/CHANGELOG.md -s && git add docs/CHANGELOG.md"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@mdn/browser-compat-data": "^4",
"css": "^3",
"fast-glob": "^3",
"htmlparser2": "^7"
},
"devDependencies": {
"@types/css": "^0.0.33",
"@types/jest": "^27",
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"commitizen": "^4",
"conventional-changelog-cli": "^2",
"cz-conventional-changelog": "^3",
"eslint": "^8",
"eslint-config-airbnb-base": "^15",
"eslint-config-airbnb-base-typescript": "^1",
"eslint-config-airbnb-typescript": "^16",
"eslint-plugin-import": "^2",
"husky": "^7",
"jest": "^27",
"rimraf": "^3",
"ts-jest": "^27",
"ts-node": "^10",
"tslib": "^2",
"typescript": "~4.8"
}
}