aswi2020vldc-gitlab/templetes/node_modules/import-local/package.json @ 0b434236
1 |
{
|
---|---|
2 |
"name": "import-local", |
3 |
"version": "2.0.0", |
4 |
"description": "Let a globally installed package use a locally installed version of itself if available", |
5 |
"license": "MIT", |
6 |
"repository": "sindresorhus/import-local", |
7 |
"author": { |
8 |
"name": "Sindre Sorhus", |
9 |
"email": "sindresorhus@gmail.com", |
10 |
"url": "sindresorhus.com" |
11 |
}, |
12 |
"bin": { |
13 |
"import-local-fixture": "fixtures/cli.js" |
14 |
}, |
15 |
"engines": { |
16 |
"node": ">=6" |
17 |
}, |
18 |
"scripts": { |
19 |
"test": "xo && ava" |
20 |
}, |
21 |
"files": [ |
22 |
"index.js", |
23 |
"fixtures/cli.js" |
24 |
], |
25 |
"keywords": [ |
26 |
"import", |
27 |
"local", |
28 |
"require", |
29 |
"resolve", |
30 |
"global", |
31 |
"version", |
32 |
"prefer", |
33 |
"cli" |
34 |
], |
35 |
"dependencies": { |
36 |
"pkg-dir": "^3.0.0", |
37 |
"resolve-cwd": "^2.0.0" |
38 |
}, |
39 |
"devDependencies": { |
40 |
"ava": "*", |
41 |
"cpy": "^7.0.1", |
42 |
"del": "^3.0.0", |
43 |
"execa": "^0.11.0", |
44 |
"xo": "*" |
45 |
}, |
46 |
"xo": { |
47 |
"ignores": [ |
48 |
"fixtures" |
49 |
] |
50 |
} |
51 |
}
|