UNPKG

1.73 kBJSONView Raw
1{
2 "name": "@rollup/plugin-alias",
3 "version": "3.0.1",
4 "publishConfig": {
5 "access": "public"
6 },
7 "description": "Define and resolve aliases for bundle dependencies",
8 "license": "MIT",
9 "repository": "rollup/plugins",
10 "author": "Johannes Stein",
11 "homepage": "https://github.com/rollup/plugins/tree/master/packages/alias#readme",
12 "bugs": "https://github.com/rollup/plugins/issues",
13 "main": "dist/index.js",
14 "scripts": {
15 "build": "rollup -c",
16 "ci:coverage": "nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov",
17 "ci:lint": "pnpm run build && pnpm run lint",
18 "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
19 "ci:test": "pnpm run test -- --verbose",
20 "lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package",
21 "lint:docs": "prettier --single-quote --write README.md",
22 "lint:js": "eslint --fix --cache src test",
23 "lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
24 "prebuild": "del-cli dist",
25 "prepare": "pnpm run build",
26 "prepublishOnly": "pnpm run lint && pnpm run test",
27 "pretest": "pnpm run build",
28 "test": "ava"
29 },
30 "files": [
31 "dist",
32 "src",
33 "README.md",
34 "LICENSE"
35 ],
36 "keywords": [
37 "rollup",
38 "plugin",
39 "resolve",
40 "alias"
41 ],
42 "peerDependencies": {
43 "rollup": "^1.20.0"
44 },
45 "dependencies": {
46 "slash": "^3.0.0"
47 },
48 "devDependencies": {
49 "@rollup/plugin-node-resolve": "^7.0.0",
50 "del-cli": "^3.0.0",
51 "rollup": "^1.27.14"
52 },
53 "ava": {
54 "files": [
55 "!**/fixtures/**",
56 "!**/helpers/**",
57 "!**/recipes/**",
58 "!**/types.ts"
59 ]
60 },
61 "module": "dist/index.es2015.js"
62}