1 | {
|
2 | "name": "@rollup/plugin-node-resolve",
|
3 | "version": "13.1.1",
|
4 | "publishConfig": {
|
5 | "access": "public"
|
6 | },
|
7 | "description": "Locate and bundle third-party dependencies in node_modules",
|
8 | "license": "MIT",
|
9 | "repository": {
|
10 | "url": "rollup/plugins",
|
11 | "directory": "packages/node-resolve"
|
12 | },
|
13 | "author": "Rich Harris <richard.a.harris@gmail.com>",
|
14 | "homepage": "https://github.com/rollup/plugins/tree/master/packages/node-resolve/#readme",
|
15 | "bugs": "https://github.com/rollup/plugins/issues",
|
16 | "main": "./dist/cjs/index.js",
|
17 | "module": "./dist/es/index.js",
|
18 | "type": "commonjs",
|
19 | "exports": {
|
20 | "require": "./dist/cjs/index.js",
|
21 | "import": "./dist/es/index.js"
|
22 | },
|
23 | "engines": {
|
24 | "node": ">= 10.0.0"
|
25 | },
|
26 | "scripts": {
|
27 | "build": "rollup -c",
|
28 | "ci:coverage": "nyc pnpm test && nyc report --reporter=text-lcov > coverage.lcov",
|
29 | "ci:lint": "pnpm build && pnpm lint",
|
30 | "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
|
31 | "ci:test": "pnpm test -- --verbose && pnpm test:ts",
|
32 | "prebuild": "del-cli dist",
|
33 | "prepare": "if [ ! -d 'dist' ]; then pnpm build; fi",
|
34 | "prerelease": "pnpm build",
|
35 | "pretest": "pnpm build",
|
36 | "release": "pnpm plugin:release --workspace-root -- --pkg $npm_package_name",
|
37 | "test": "ava && pnpm test:ts",
|
38 | "test:ts": "tsc types/index.d.ts test/types.ts --noEmit"
|
39 | },
|
40 | "files": [
|
41 | "dist",
|
42 | "types",
|
43 | "README.md",
|
44 | "LICENSE"
|
45 | ],
|
46 | "keywords": [
|
47 | "rollup",
|
48 | "plugin",
|
49 | "es2015",
|
50 | "npm",
|
51 | "modules"
|
52 | ],
|
53 | "peerDependencies": {
|
54 | "rollup": "^2.42.0"
|
55 | },
|
56 | "dependencies": {
|
57 | "@rollup/pluginutils": "^3.1.0",
|
58 | "@types/resolve": "1.17.1",
|
59 | "builtin-modules": "^3.1.0",
|
60 | "deepmerge": "^4.2.2",
|
61 | "is-module": "^1.0.0",
|
62 | "resolve": "^1.19.0"
|
63 | },
|
64 | "devDependencies": {
|
65 | "@babel/core": "^7.10.5",
|
66 | "@babel/plugin-transform-typescript": "^7.10.5",
|
67 | "@rollup/plugin-babel": "^5.1.0",
|
68 | "@rollup/plugin-commonjs": "^16.0.0",
|
69 | "@rollup/plugin-json": "^4.1.0",
|
70 | "es5-ext": "^0.10.53",
|
71 | "rollup": "^2.58.0",
|
72 | "source-map": "^0.7.3",
|
73 | "string-capitalize": "^1.0.1"
|
74 | },
|
75 | "types": "types/index.d.ts",
|
76 | "ava": {
|
77 | "babel": {
|
78 | "compileEnhancements": false
|
79 | },
|
80 | "files": [
|
81 | "!**/fixtures/**",
|
82 | "!**/helpers/**",
|
83 | "!**/recipes/**",
|
84 | "!**/types.ts"
|
85 | ]
|
86 | }
|
87 | }
|