-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.75 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": "@ec0lint/create-config",
"version": "2.1.2",
"author": "ec0lint",
"description": "Utility to create ec0lint config files.",
"keywords": [
"ast",
"lint",
"javascript",
"ecmascript",
"espree"
],
"homepage": "http://ec0lint.com",
"bugs": "https://github.com/ec0lint/create-config/issues/",
"repository": "ec0lint/create-config",
"license": "MIT",
"type": "module",
"bin": {
"create-config": "./bin/create-config.js"
},
"files": [
"LICENSE",
"README.md",
"bin",
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint .",
"test": "mocha \"tests/init/**/*.js\"",
"test:cov": "c8 npm test"
},
"mocha": {
"loader": "esmock",
"ui": "bdd"
},
"dependencies": {
"@ec0lint/ec0lintrc": "^2.1.0",
"cross-spawn": "^7.0.2",
"debug": "^4.0.1",
"enquirer": "^2.3.5",
"js-yaml": "^4.1.0",
"json-stable-stringify-without-jsonify": "^1.0.1",
"semver": "^7.2.1"
},
"devDependencies": {
"c8": "^7.10.0",
"chai": "^4.3.4",
"ec0lint": "^2.1.0",
"ec0lint-config-ec0lint": "^2.1.0",
"eslint": "^8.11.0",
"esmock": "^1.7.0",
"espree": "^9.0.0",
"fs-teardown": "^0.3.0",
"lint-staged": "^12.1.2",
"memfs": "^3.4.0",
"mocha": "^9.1.3",
"shelljs": "^0.8.4",
"sinon": "^12.0.1",
"yorkie": "^2.0.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"lint-staged": {
"*.js": "eslint"
},
"gitHooks": {
"pre-commit": "lint-staged"
}
}