-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.01 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
{
"name": "eslint-plugin-playlyfe",
"description": "custom eslint stuff for playlyfe",
"version": "0.0.0-dummy-version",
"main": "lib/index.js",
"scripts": {
"test": "yarn check-code && cross-env yarn testonly --coverage",
"testonly": "cross-env NODE_ENV=test jest",
"check-code": "yarn lint",
"flow-typed-update": "rm -rf && flow-typed update",
"lint": "eslint src",
"report-coverage": "codecov",
"build": "rm -rf lib && babel ./src --out-dir ./lib --ignore '**/__tests__/**,**/node_modules/**,**/test-utils/**'"
},
"repository": {
"type": "git",
"url": "https://github.com/Mayank1791989/eslint-plugin-playlyfe.git"
},
"keywords": [
"eslint",
"eslint-plugin",
"playlyfe"
],
"files": [
"lib",
"README.md"
],
"author": "Mayank Agarwal <mayank1791989@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mayank1791989/eslint-plugin-playlyfe/issues"
},
"homepage": "https://github.com/Mayank1791989/eslint-plugin-playlyfe#readme",
"dependencies": {
"@babel/runtime": "7.5.5",
"babel-eslint": "10.0.2",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-flowtype": "3.12.2",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.3",
"intl-messageformat-parser": "1.8.1",
"invariant": "2.2.4",
"lodash": "4.17.15",
"redent": "3.0.0"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"babel-jest": "24.8.0",
"babel-plugin-module-resolver": "3.2.0",
"babel-preset-playlyfe": "4.0.1",
"codecov": "3.5.0",
"cross-env": "5.2.0",
"dedent-js": "1.0.1",
"eslint": "6.1.0",
"eslint-friendly-formatter": "4.0.1",
"eslint-plugin-playlyfe": "7.0.0",
"flow-bin": "0.104.0",
"husky": "3.0.2",
"jest": "24.8.0",
"prettier": "1.18.2",
"semantic-release": "15.13.19"
},
"peerDependencies": {
"eslint": "^6.1.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn test"
}
}
}