UNPKG

2.6 kBJSONView Raw
1{
2 "name": "bundlib",
3 "displayName": "Bundlib",
4 "version": "0.17.8",
5 "description": "An automatic configuration manager for Rollup.js.",
6 "keywords": [
7 "library",
8 "bundle",
9 "bundler",
10 "typescript",
11 "rollup"
12 ],
13 "main": "dist/bundlib.js",
14 "module": "dist/bundlib.mjs",
15 "bin": "bin/bundlib-cli.js",
16 "types": "dist/types/index.d.ts",
17 "typings": "dist/types/index.d.ts",
18 "scripts": {
19 "dev": "ts-node -T -P tsconfig-ts-node.json src/cli -dw",
20 "build": "ts-node -T -P tsconfig-ts-node.json src/cli -d",
21 "test": "jest --color -w 3",
22 "test:watch": "npm test -- --watch-all",
23 "clean": "rimraf bin dist coverage node_modules/.cache/bundlib node_modules/.cache/jest",
24 "lint": "eslint src/**/*.ts __test__/**/*.{js,ts}",
25 "prerelease": "npm run clean && npm run lint && npm test && npm run build",
26 "release": "standard-version"
27 },
28 "engines": {
29 "node": ">=10"
30 },
31 "dependencies": {
32 "@babel/core": "^7.12.3",
33 "@rollup/plugin-babel": "^5.2.1",
34 "@rollup/plugin-buble": "^0.21.3",
35 "@rollup/plugin-commonjs": "^16.0.0",
36 "@rollup/plugin-json": "^4.0.3",
37 "@rollup/plugin-node-resolve": "^10.0.0",
38 "builtin-modules": "^3.1.0",
39 "camelcase": "^6.1.0",
40 "chalk": "^4.1.0",
41 "commander": "^6.2.0",
42 "cosmiconfig": "^7.0.0",
43 "gen-unit": "0.0.6",
44 "load-json-file": "^6.2.0",
45 "pretty-ms": "^7.0.1",
46 "resolve-from": "^5.0.0",
47 "rollup": "^2.32.1",
48 "rollup-plugin-add-shebang": "^0.3.1",
49 "rollup-plugin-eslint": "^7.0.0",
50 "rollup-plugin-export-equals": "^0.3.7",
51 "rollup-plugin-strip-shebang": "^1.2.9",
52 "rollup-plugin-terser": "^7.0.2",
53 "rollup-plugin-typescript2": "^0.28.0",
54 "slash": "^3.0.0",
55 "typescript": "^4.0.5"
56 },
57 "devDependencies": {
58 "@babel/preset-env": "^7.12.1",
59 "@types/jest": "^26.0.15",
60 "@types/mock-fs": "^4.13.0",
61 "@types/node": "^14.14.5",
62 "@typescript-eslint/eslint-plugin": "^4.6.0",
63 "@typescript-eslint/parser": "^4.6.0",
64 "chokidar": "^3.4.3",
65 "eslint": "^7.12.1",
66 "husky": "^4.3.0",
67 "jest": "^26.6.1",
68 "mock-fs": "^4.13.0",
69 "rimraf": "^3.0.2",
70 "standard-version": "^9.0.0",
71 "ts-jest": "^26.4.3",
72 "ts-node": "^9.0.0"
73 },
74 "author": {
75 "name": "Manuel Fernández",
76 "email": "manferlo81@gmail.com"
77 },
78 "repository": {
79 "type": "git",
80 "url": "git+https://github.com/manferlo81/bundlib.git"
81 },
82 "bugs": {
83 "url": "https://github.com/manferlo81/bundlib/issues"
84 },
85 "homepage": "https://github.com/manferlo81/bundlib#readme",
86 "license": "MIT"
87}