-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
62 lines (62 loc) · 1.2 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
{
"name": "browserslist-ga",
"version": "0.0.13",
"description": "Target browsers tailored to your audience",
"repository": "github:browserslist/browserslist-ga",
"license": "MIT",
"bin": {
"browserslist-ga": "index.js"
},
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"precommit": "lint-staged",
"test": "jest"
},
"dependencies": {
"caniuse-lite": "^1.0.30001016",
"googleapis": "^39.1.0",
"inquirer": "^5.2.0",
"inquirer-datepicker-prompt": "^0.4.2",
"map-to-chrome": "0.0.3",
"opener": "^1.5.1",
"portfinder": "^1.0.25"
},
"prettier": {
"printWidth": 100,
"trailingComma": "es5"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 6
},
"rules": {
"no-console": "off"
},
"globals": {
"expect": false,
"test": false
}
},
"jest": {
"testURL": "http://localhost/"
},
"devDependencies": {
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.0.5",
"prettier": "^1.19.1"
}
}