UNPKG

1.67 kBJSONView Raw
1{
2 "name": "@rollup/plugin-strip",
3 "version": "1.3.1",
4 "publishConfig": {
5 "access": "public"
6 },
7 "description": "Remove debugger statements and functions like assert.equal and console.log from your code.",
8 "license": "MIT",
9 "repository": "rollup/@rollup/plugin-strip",
10 "author": "Rich Harris",
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 beep",
18 "ci:lint": "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/test.js",
24 "lint:package": "prettier --write package.json --plugin=prettier-plugin-package",
25 "pretest": "pnpm run build",
26 "security": "echo 'pnpm needs `npm audit` support'",
27 "test": "ava"
28 },
29 "files": [
30 "dist"
31 ],
32 "keywords": [
33 "rollup",
34 "modules",
35 "debugging",
36 "javascript"
37 ],
38 "peerDependencies": {
39 "rollup": "^1.20.0"
40 },
41 "dependencies": {
42 "estree-walker": "^0.6.0",
43 "magic-string": "^0.25.1",
44 "rollup-pluginutils": "^2.8.1"
45 },
46 "devDependencies": {
47 "acorn": "^6.0.2",
48 "rollup": "^1.20.0"
49 },
50 "ava": {
51 "files": [
52 "!**/fixtures/**",
53 "!**/helpers/**",
54 "!**/recipes/**",
55 "!**/types.ts"
56 ]
57 },
58 "module": "dist/index.es.js"
59}