UNPKG

1.79 kBJSONView Raw
1{
2 "name": "bundlib",
3 "version": "0.2.3",
4 "description": "A Zero-configuration, automatic javascript library bundler using Typescript and Rollup.js",
5 "main": "dist/bundlib.cjs.js",
6 "module": "dist/bundlib.es.js",
7 "bin": "bin/bundlib-cli.js",
8 "typings": "types/index.d.ts",
9 "scripts": {
10 "lint": "tslint src/**/*.ts",
11 "clean": "rm -rf dist types coverage",
12 "dev": "ts-node src-bin -dw",
13 "build": "npm run lint && ts-node src-bin",
14 "test": "jest",
15 "preversion": "npm run clean && npm run build && npm test"
16 },
17 "keywords": [
18 "library",
19 "bundle",
20 "bundler",
21 "typescript",
22 "rollup"
23 ],
24 "dependencies": {
25 "@babel/core": "^7.4.4",
26 "babel-plugin-transform-async-to-promises": "^0.8.10",
27 "builtin-modules": "^3.1.0",
28 "chalk": "^2.4.2",
29 "commander": "^2.20.0",
30 "ora": "^3.4.0",
31 "read-pkg": "^5.1.1",
32 "rollup": "^1.10.1",
33 "rollup-plugin-babel": "^4.3.2",
34 "rollup-plugin-buble": "^0.19.6",
35 "rollup-plugin-commonjs": "^9.3.4",
36 "rollup-plugin-dts": "^0.15.1",
37 "rollup-plugin-export-equals": "^0.1.2",
38 "rollup-plugin-node-resolve": "^4.2.3",
39 "rollup-plugin-terser": "^4.0.4",
40 "typescript": "^3.4.5"
41 },
42 "devDependencies": {
43 "@types/jest": "^24.0.11",
44 "@types/node": "^11.13.8",
45 "@types/rollup-plugin-buble": "^0.19.1",
46 "jest": "^24.7.1",
47 "ts-node": "^8.1.0",
48 "tslint": "^5.16.0"
49 },
50 "files": [
51 "bin",
52 "dist",
53 "types"
54 ],
55 "author": "Manuel Fernandez <manferlo81@gmail.com>",
56 "repository": {
57 "type": "git",
58 "url": "git+https://github.com/manferlo81/bundlib.git"
59 },
60 "bugs": {
61 "url": "https://github.com/manferlo81/bundlib/issues"
62 },
63 "homepage": "https://github.com/manferlo81/bundlib#readme",
64 "license": "MIT"
65}