-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.26 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "eslint-plugin-emmanuel",
"version": "0.4.2",
"description": "My ESLint plugin",
"repository": "github:Manu1400/eslint-plugin-emmanuel",
"homepage": "https://github.com/Manu1400/eslint-plugin-emmanuel#readme",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "Emmanuel Haguet <[email protected]>",
"main": "index.js",
"files": [
"index.js",
".eslintrc.json",
"lib"
],
"scripts": {
"test": "mocha tests/config/ tests/lib --recursive",
"test:config": "eslint tests/essai.js",
"lint": "eslint ./tests/ ./lib/ -f codeframe && eslint --ext md .",
"fix": "eslint --fix-dry-run && eslint --fix",
"docs": "./node_modules/eslint-docs/dist/cli.js check",
"perf": "TIMING=1 eslint tests/lib/rules/** && TIMING=1 npm test",
"coverage": "nyc mocha tests/lib/rules/*.js lib/rules/*.js",
"////": "dont work:",
"perf:export": "eslint tests --rule \"timeout: 2\" --quiet -o=newfile.md > ruletable.md",
"integration": "./tests/integration/test.js",
"repolinter": "npx repolinter lib/",
"summary": "eslint -f eslint-formatter-summary ./lib/",
"//": "for: npm version",
"preversion": "npm run test",
"postversion": "git push && git push --tags"
},
"dependencies": {
"bcp47-validate": "^1.0.0",
"dlv": "^1.1.3",
"fast-json-stable-stringify": "^2.0.0",
"is-bigint": "^1.0.0",
"is-url": "^1.2.4",
"js-levenshtein": "^1.1.6",
"js-xpath": "0.0.4",
"just-compare": "^1.3.0",
"lodash.isequal": "^4.5.0",
"quote": "^0.4.0",
"reflect-type-3": "^1.0.0",
"requireindex": "^1.2.0",
"s-sortbydistance": "^1.1.0",
"safe-eval": "^0.4.1",
"xpath-analyzer": "^3.0.0"
},
"devDependencies": {
"@getify/eslint-plugin-proper-ternary": "^3.0.1",
"@manu1400/eslint-plugin-jsonschema": "^0.3.2",
"@types/del": "^4.0.0",
"@types/eslint": "^4.16.6",
"@types/execa": "^0.9.0",
"@types/is-url": "^1.2.28",
"@types/js-levenshtein": "^1.1.0",
"@types/listr": "^0.14.0",
"@types/lodash.isequal": "^4.5.5",
"@types/mocha": "^5.2.7",
"@types/tempy": "^0.3.0",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.11.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-docs": "^0.4.0",
"eslint-formatter-summary": "^1.0.2",
"eslint-plugin-arca": "^0.8.1",
"eslint-plugin-arithmetic": "^1.0.6",
"eslint-plugin-eslint-plugin": "^2.1.0",
"eslint-plugin-jsdoc": "^8.6.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-no-hyogo-police": "^1.0.0",
"eslint-plugin-no-useless-assign": "^1.0.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-nuxt": "^0.4.3",
"eslint-plugin-prefer-type-alias": "^0.1.0",
"eslint-plugin-pureness": "^2.2.1",
"eslint-plugin-self": "^1.2.0",
"eslint-plugin-unicorn": "^9.1.1",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.4.0",
"execa": "^2.0.0",
"flow-parser": "^0.101.0",
"import-lazy": "^3.1.0",
"listr": "^0.14.3",
"mocha": "^6.1.3",
"tempy": "^0.3.0",
"tsd": "^0.7.2"
},
"peerDependencies": {
"eslint": ">=5.0.0",
"espree": ">=5.0.0"
},
"engines": {
"node": ">=10.0.0"
},
"license": "ISC"
}