-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.86 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
{
"name": "browizard",
"version": "0.4.1",
"description": "A javascript browser compatibility checker based on MDN data",
"main": "browizard.js",
"scripts": {
"build": "node build.js",
"build-ts": "webpack --mode production",
"lint-ts": "tslint -c tslint.json 'src/**/*.ts'",
"publish-lib": "npm publish ./dist",
"test": "echo \"Error: no test specified\" && exit 1",
"watch-ts": "webpack --watch --mode development"
},
"preferGlobal": true,
"engines": {
"node": ">=8"
},
"bin": {
"browizard": "./bin/browizard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maximelafarie/browizard.git"
},
"keywords": [
"caniuse",
"browser",
"mdn",
"inspector",
"browser",
"browizard",
"compatibility",
"checker"
],
"author": "Maxime Lafarie",
"license": "MIT",
"bugs": {
"url": "https://github.com/maximelafarie/browizard/issues"
},
"homepage": "https://github.com/maximelafarie/browizard#readme",
"dependencies": {
"acorn": "^7.4.1",
"acorn-bigint": "^0.4.0",
"acorn-jsx": "^5.1.0",
"acorn-walk": "^7.0.0",
"chalk": "^3.0.0",
"cli-progress": "^3.4.0",
"event-stream": "^4.0.1",
"express": "^4.17.1",
"lodash": "^4.17.20",
"mdn-browser-compat-data": "^1.0.2",
"semver-compare": "^1.0.0"
},
"devDependencies": {
"@types/acorn": "^4.0.5",
"@types/caniuse-lite": "^1.0.0",
"@types/cli-progress": "^1.8.1",
"@types/event-stream": "^3.3.34",
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.17",
"shelljs": "^0.8.3",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"typescript": "^3.7.3",
"uglify-js": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^4.9.0",
"webpack-node-externals": "^1.7.2"
},
"files": [
"bin",
"browizard.js"
]
}