UNPKG

2.28 kBJSONView Raw
1{
2 "name": "@rollup/pluginutils",
3 "version": "3.0.4",
4 "publishConfig": {
5 "access": "public"
6 },
7 "description": "A set of utility functions commonly used by Rollup plugins",
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/pluginutils#readme",
12 "bugs": {
13 "url": "https://github.com/rollup/plugins/issues"
14 },
15 "main": "dist/index.js",
16 "engines": {
17 "node": ">= 8.0.0"
18 },
19 "scripts": {
20 "build": "rollup -c",
21 "ci:coverage": "nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov",
22 "ci:lint": "pnpm run build && pnpm run lint",
23 "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
24 "ci:test": "pnpm run test -- --verbose",
25 "lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package",
26 "lint:docs": "prettier --single-quote --write README.md",
27 "lint:js": "eslint --fix --cache src --ext .js,.ts",
28 "lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
29 "prebuild": "del-cli dist",
30 "prepare": "pnpm run build",
31 "prepublishOnly": "pnpm run lint && pnpm run build",
32 "pretest": "pnpm run build -- --sourcemap",
33 "test": "ava"
34 },
35 "files": [
36 "dist",
37 "types",
38 "README.md",
39 "LICENSE"
40 ],
41 "keywords": [
42 "rollup",
43 "plugin",
44 "utils"
45 ],
46 "peerDependencies": {
47 "rollup": "^1.20.0"
48 },
49 "dependencies": {
50 "estree-walker": "^0.6.1"
51 },
52 "devDependencies": {
53 "@types/estree": "0.0.39",
54 "@types/jest": "^24.0.23",
55 "@types/micromatch": "^3.1.1",
56 "@types/node": "^12.12.11",
57 "micromatch": "^4.0.2",
58 "rollup-plugin-commonjs": "^10.1.0",
59 "rollup-plugin-node-resolve": "^5.2.0",
60 "rollup-plugin-typescript": "^1.0.1",
61 "typescript": "^3.7.2"
62 },
63 "ava": {
64 "compileEnhancements": false,
65 "extensions": [
66 "ts"
67 ],
68 "require": [
69 "ts-node/register"
70 ],
71 "files": [
72 "!**/fixtures/**",
73 "!**/helpers/**",
74 "!**/recipes/**",
75 "!**/types.ts"
76 ]
77 },
78 "module": "dist/index.es.js",
79 "nyc": {
80 "extension": [
81 ".js",
82 ".ts"
83 ]
84 },
85 "types": "types/index.d.ts"
86}