-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
{
"name": "eslint-import-resolver-alias",
"version": "1.1.2",
"description": "a simple Node behavior import resolution plugin for eslint-plugin-import, supporting module alias.",
"main": "index.js",
"scripts": {
"release": "node build/release.js",
"test": "mocha test/test.js --require test/setup.js",
"cov": "istanbul cover node_modules/mocha/bin/_mocha -- test/test.js --require test/setup.js"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin-import",
"eslint-import-resolver",
"import-resolver",
"resolver",
"resolve",
"resolution",
"alias",
"mapping",
"rewrite",
"rename",
"webpack",
"module",
"node-native",
"module-resolver",
"import",
"require"
],
"engines": {
"node": ">= 4"
},
"author": "johvin",
"license": "MIT",
"devDependencies": {
"adjust-md-for-publish": "^1.0.0",
"builtin-modules": "^2.0.0",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^3.2.0"
},
"peerDependencies": {
"eslint-plugin-import": ">=1.4.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johvin/eslint-import-resolver-alias.git"
},
"bugs": {
"url": "https://github.com/johvin/eslint-import-resolver-alias/issues"
},
"homepage": "https://github.com/johvin/eslint-import-resolver-alias#readme"
}