-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 974 Bytes
/
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
{
"name": "caniuse-cli",
"version": "1.0.30000979",
"description": "Comman line tool for Caniuse database",
"keywords": [
"support",
"css",
"js",
"html5",
"svg"
],
"main": "index.js",
"bin": {
"caniuse": "./index.js"
},
"scripts": {
"upgrade-db": "npm update --save caniuse-db && git add package.json && git commit -m \"upgrade db\" && git push origin master",
"bump-version": "node ./bump_version.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "David Senkus",
"license": "ISC",
"dependencies": {
"caniuse-db": "^1.0.30000979",
"cli-color": "^1.2.0",
"omelette": "^0.4.5",
"wordwrap": "^1.0.0"
},
"devDependencies": {
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dsenkus/caniuse-cli.git"
}
}