-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.76 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
{
"name": "eslint-config-space-single",
"version": "0.3.11",
"description": "Sharable ESLint config, based on xo-space, but with single quotes + some additional settings.",
"keywords": [
"eslint",
"xo",
"xo-space"
],
"license": "MIT",
"author": {
"name": "Stefan Walther",
"url": "https://github.com/stefanwalther",
"twitter": "waltherstefan"
},
"files": [
"src/index.js",
"esnext.js",
"browser.js",
"test.js"
],
"main": "src/index.js",
"repository": "https://github.com/stefanwalther/eslint-config-space-single",
"scripts": {
"docs": "docker run --rm -v ${PWD}:/opt/verb stefanwalther/verb",
"test": "mocha './test/**/*.spec.js' --require './test/mocha.conf.js'",
"lint": "eslint ./*.js && eslint test",
"lint:fix": "eslint ./*.js --fix && eslint test --fix",
"lint:src": "eslint ./*.js",
"lint:src:fix": "eslint ./*.js --fix",
"lint:test": "eslint test",
"lint:test:fix": "eslint test --fix",
"coverage": "istanbul cover node_modules/.bin/_mocha --require ./test/mocha.conf.js -- -- -u exports -R spec test/**/* && codecov"
},
"dependencies": {
"eslint-config-xo-space": "0.20.0"
},
"devDependencies": {
"chai": "4.2.0",
"codecov": "3.1.0",
"eslint": "5.10.0",
"eslint-plugin-mocha": "5.2.0",
"is-plain-obj": "1.1.0",
"istanbul": "0.4.5",
"mocha": "5.2.0",
"temp-write": "3.4.0"
},
"verb": {
"run": true,
"toc": false,
"layout": "empty",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"related": {
"list": [
"eslint",
"eslint-config-xo-space"
]
},
"lint": {
"reflinks": true
},
"reflinks": [
"verb",
"verb-readme-generator"
]
}
}