forked from seegno/eslint-config-seegno
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "eslint-config-seegno",
"version": "1.1.1",
"description": "Seegno-flavored ESLint config",
"main": "dist/index.js",
"options": {
"mocha": "--compilers js:babel/register --recursive --timeout 5000 --require should test"
},
"scripts": {
"build": "rm -rf dist/* && babel src/ --out-dir dist/",
"changelog": "github_changelog_generator --header-label='# Changelog'",
"lint": "eslint .",
"prepublish": "npm test && npm run build",
"test": "mocha $npm_package_options_mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/seegno/eslint-config-seegno.git"
},
"keywords": [
"config",
"eslint",
"lint",
"shared"
],
"author": "Seegno",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/seegno/eslint-config-seegno/issues"
},
"homepage": "https://github.com/seegno/eslint-config-seegno#readme",
"dependencies": {
"eslint": "^1.8.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"eslint-plugin-babel": "^2.1.1",
"mocha": "^2.3.3",
"should": "^7.1.0"
},
"peerDependencies": {
"babel-eslint": ">= 4.1",
"eslint": ">= 1.8",
"eslint-plugin-babel": ">= 2.1"
},
"engines": {
"node": ">= 4.0.0"
}
}