UNPKG

1.82 kBJSONView Raw
1{
2 "name": "@rollup/plugin-alias",
3 "version": "2.2.0",
4 "publishConfig": {
5 "access": "public"
6 },
7 "description": "Resolves aliases with Rollup",
8 "license": "MIT",
9 "repository": "rollup/plugins",
10 "author": "Johannes Stein",
11 "homepage": "https://github.com/rollup/plugins",
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:coverage:submit": "curl -s https://codecov.io/bash | bash -s - -F alias",
18 "ci:lint": "pnpm run build && pnpm run lint && pnpm run security",
19 "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
20 "ci:test": "pnpm run test -- --verbose",
21 "lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package",
22 "lint:docs": "prettier --single-quote --write README.md",
23 "lint:js": "eslint --fix --cache src test",
24 "lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
25 "prebuild": "del-cli dist",
26 "prepare": "npm run build",
27 "prepublishOnly": "npm run lint && npm run test",
28 "pretest": "npm run build",
29 "security": "echo 'pnpm needs `npm audit` support'",
30 "test": "ava"
31 },
32 "files": [
33 "dist",
34 "src",
35 "README.md",
36 "LICENSE"
37 ],
38 "keywords": [
39 "rollup",
40 "plugin",
41 "resolve",
42 "alias"
43 ],
44 "peerDependencies": {
45 "rollup": "^1.20.0"
46 },
47 "dependencies": {
48 "slash": "^3.0.0"
49 },
50 "devDependencies": {
51 "del-cli": "^3.0.0",
52 "rollup": "^1.20.0"
53 },
54 "ava": {
55 "files": [
56 "!**/fixtures/**",
57 "!**/helpers/**",
58 "!**/recipes/**",
59 "!**/types.ts"
60 ]
61 },
62 "jsnext:main": "dist/index.es2015.js",
63 "module": "dist/index.es2015.js"
64}