UNPKG

2.07 kBJSONView Raw
1{
2 "name": "bundlib",
3 "version": "0.5.0",
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 "clean": "rm -rf .cache bin dist types coverage",
11 "dev": "ts-node src-bin -dw",
12 "build:cli": "tslint src-bin/**/*.ts && rollup -c",
13 "build:api": "tslint src/**/*.ts && ts-node src-bin -d",
14 "build": "npm run build:cli && npm run build:api",
15 "test": "jest --colors",
16 "preversion": "npm run clean && npm run build && npm test"
17 },
18 "keywords": [
19 "library",
20 "bundle",
21 "bundler",
22 "typescript",
23 "rollup"
24 ],
25 "dependencies": {
26 "@babel/core": "^7.4.5",
27 "babel-plugin-transform-async-to-promises": "^0.8.11",
28 "builtin-modules": "^3.1.0",
29 "commander": "^2.20.0",
30 "read-pkg": "^5.1.1",
31 "rollup": "^1.14.3",
32 "rollup-plugin-add-shebang": "^0.3.0",
33 "rollup-plugin-babel": "^4.3.2",
34 "rollup-plugin-buble": "^0.19.6",
35 "rollup-plugin-commonjs": "^10.0.0",
36 "rollup-plugin-export-equals": "^0.2.2",
37 "rollup-plugin-json": "^4.0.0",
38 "rollup-plugin-node-resolve": "^5.0.1",
39 "rollup-plugin-strip-shebang": "^1.1.20",
40 "rollup-plugin-terser": "^5.0.0",
41 "rollup-plugin-typescript2": "^0.21.1",
42 "typescript": "^3.5.1"
43 },
44 "devDependencies": {
45 "@types/jest": "^24.0.13",
46 "@types/node": "^12.0.5",
47 "@types/rollup-plugin-buble": "^0.19.1",
48 "@types/rollup-plugin-json": "^3.0.2",
49 "eslint": "^5.16.0",
50 "jest": "^24.8.0",
51 "ts-node": "^8.2.0",
52 "tslint": "^5.17.0"
53 },
54 "files": [
55 "bin",
56 "dist",
57 "types",
58 "src"
59 ],
60 "author": "Manuel Fernandez <manferlo81@gmail.com>",
61 "repository": {
62 "type": "git",
63 "url": "git+https://github.com/manferlo81/bundlib.git"
64 },
65 "bugs": {
66 "url": "https://github.com/manferlo81/bundlib/issues"
67 },
68 "homepage": "https://github.com/manferlo81/bundlib#readme",
69 "license": "MIT"
70}