UNPKG

2.38 kBJSONView Raw
1{
2 "name": "@rollup/plugin-node-resolve",
3 "version": "8.0.1",
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/tree/master/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",
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 types --ext .js,.ts",
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 "test": "ava",
32 "test:ts": "tsc types/index.d.ts test/types.ts --noEmit"
33 },
34 "files": [
35 "dist",
36 "types",
37 "README.md",
38 "LICENSE"
39 ],
40 "keywords": [
41 "rollup",
42 "plugin",
43 "es2015",
44 "npm",
45 "modules"
46 ],
47 "peerDependencies": {
48 "rollup": "^1.20.0||^2.0.0"
49 },
50 "dependencies": {
51 "@rollup/pluginutils": "^3.0.8",
52 "@types/resolve": "0.0.8",
53 "builtin-modules": "^3.1.0",
54 "deep-freeze": "^0.0.1",
55 "deepmerge": "^4.2.2",
56 "is-module": "^1.0.0",
57 "resolve": "^1.14.2"
58 },
59 "devDependencies": {
60 "@babel/core": "^7.9.0",
61 "@babel/preset-env": "^7.9.0",
62 "@rollup/plugin-json": "^4.0.1",
63 "es5-ext": "^0.10.53",
64 "rollup": "^2.12.0",
65 "rollup-plugin-babel": "^4.3.3",
66 "rollup-plugin-commonjs": "^10.1.0",
67 "source-map": "^0.7.3",
68 "string-capitalize": "^1.0.1"
69 },
70 "ava": {
71 "files": [
72 "!**/fixtures/**",
73 "!**/helpers/**",
74 "!**/recipes/**",
75 "!**/types.ts"
76 ]
77 },
78 "module": "dist/index.es.js",
79 "types": "types/index.d.ts"
80}