UNPKG

2.39 kBJSONView Raw
1{
2 "name": "@rollup/plugin-node-resolve",
3 "version": "6.0.0",
4 "publishConfig": {
5 "access": "public"
6 },
7 "description": "Locate and bundle third-party dependencies in node_modules",
8 "license": "MIT",
9 "repository": "rollup/plugins",
10 "author": "Rich Harris <richard.a.harris@gmail.com>",
11 "homepage": "https://github.com/rollup/plugins/packages/node-resolve/#readme",
12 "bugs": "https://github.com/rollup/plugins/issues",
13 "main": "dist/index.js",
14 "engines": {
15 "node": ">= 8.0.0"
16 },
17 "scripts": {
18 "build": "rollup -c",
19 "ci:coverage": "nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov",
20 "ci:lint": "pnpm run build && pnpm run lint && pnpm run security",
21 "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
22 "ci:test": "pnpm run test -- --verbose && pnpm run test:ts",
23 "lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package",
24 "lint:docs": "prettier --single-quote --write README.md",
25 "lint:js": "eslint --fix --cache src test",
26 "lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
27 "prebuild": "del-cli dist",
28 "prepare": "pnpm run build",
29 "prepublishOnly": "pnpm run lint && pnpm run test && pnpm run test:ts",
30 "pretest": "pnpm run build",
31 "security": "echo 'pnpm needs `npm audit` support'",
32 "test": "ava",
33 "test:ts": "tsc types/index.d.ts test/types.ts --noEmit"
34 },
35 "files": [
36 "dist",
37 "types",
38 "README.md",
39 "LICENSE"
40 ],
41 "keywords": [
42 "rollup",
43 "plugin",
44 "es2015",
45 "npm",
46 "modules"
47 ],
48 "peerDependencies": {
49 "rollup": "^1.20.0"
50 },
51 "dependencies": {
52 "@rollup/pluginutils": "^3.0.0",
53 "@types/resolve": "0.0.8",
54 "builtin-modules": "^3.1.0",
55 "is-module": "^1.0.0",
56 "resolve": "^1.11.1"
57 },
58 "devDependencies": {
59 "@babel/core": "^7.4.5",
60 "@babel/preset-env": "^7.4.5",
61 "@rollup/plugin-json": "^4.0.0",
62 "es5-ext": "^0.10.50",
63 "rollup": "^1.20.0",
64 "rollup-plugin-babel": "^4.3.2",
65 "rollup-plugin-commonjs": "^10.0.0",
66 "source-map": "^0.7.3",
67 "string-capitalize": "^1.0.1"
68 },
69 "ava": {
70 "files": [
71 "!**/fixtures/**",
72 "!**/helpers/**",
73 "!**/recipes/**",
74 "!**/types.ts"
75 ]
76 },
77 "jsnext:main": "dist/index.es.js",
78 "module": "dist/index.es.js",
79 "types": "types/index.d.ts"
80}