-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "eslint-config-sky",
"version": "1.6.2",
"description": "setting file for eslint(includes react and flowtype)",
"main": "index.js",
"scripts": {
"test": "nyc ava",
"lint": "node project-lint.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"postcover": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"keywords": [
"eslint",
"eslint-config",
"flow",
"react"
],
"repository": {
"type": "git",
"url": "git+https://github.com/abouthiroppy/eslint-config.git"
},
"author": "abouthiroppy <[email protected]> (http://about-hiroppy.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/abouthiroppy/eslint-config/issues"
},
"homepage": "https://github.com/abouthiroppy/eslint-config#readme",
"devDependencies": {
"ava": "^0.16.0",
"conventional-changelog-cli": "^1.2.0",
"eslint": "^4.0.0",
"nyc": "^8.4.0"
},
"dependencies": {
"babel-eslint": "^7.2.3",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-react": "^6.10.3"
},
"ava": {
"files": [
"test/**/*.js"
],
"concurrency": 5,
"failFast": true,
"tap": true
}
}