UNPKG

2.58 kBJSONView Raw
1{
2 "name": "@comandeer/rollup-lib-bundler",
3 "version": "0.12.0",
4 "description": "Simple library bundler",
5 "main": "dist/rollup-lib-bundler.js",
6 "jsnext:main": "dist/rollup-lib-bundler.es2015.js",
7 "module": "dist/rollup-lib-bundler.es2015.js",
8 "engines": {
9 "node": ">=10.0.0"
10 },
11 "bin": {
12 "rlb": "bin/bundler"
13 },
14 "files": [
15 "bin",
16 "dist"
17 ],
18 "config": {
19 "commitizen": {
20 "path": "./node_modules/cz-conventional-changelog"
21 }
22 },
23 "scripts": {
24 "lint": "eslint src/**/*.js tests/*.js tests/helpers/**/*.js",
25 "build": "rlb",
26 "pretest": "npm run lint && npm run build",
27 "test": "nyc mocha tests/*.js --timeout 15000 --require @babel/register",
28 "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
29 "version": "npm test && npm run build && git add -f dist/",
30 "postversion": "git rm -r --cached dist/ && git commit -m \"chore(dist): clean after release [ci skip]\" && git push origin && git push origin --tags"
31 },
32 "repository": {
33 "type": "git",
34 "url": "git+https://github.com/Comandeer/rollup-lib-bundler.git"
35 },
36 "keywords": [
37 "rollup",
38 "babel",
39 "library-bundler",
40 "bundler"
41 ],
42 "author": "Comandeer",
43 "license": "MIT",
44 "bugs": {
45 "url": "https://github.com/Comandeer/rollup-lib-bundler/issues"
46 },
47 "homepage": "https://github.com/Comandeer/rollup-lib-bundler#readme",
48 "commitplease": {
49 "nohook": true,
50 "style": "angular",
51 "types": [
52 "feat",
53 "fix",
54 "docs",
55 "style",
56 "refactor",
57 "perf",
58 "test",
59 "build",
60 "ci",
61 "chore",
62 "revert"
63 ],
64 "scope": "\\S+.*"
65 },
66 "nyc": {
67 "include": [
68 "src/**/*.js"
69 ],
70 "exclude": [
71 "dist/**/*.js",
72 "tests/**/*.js"
73 ]
74 },
75 "devDependencies": {
76 "@babel/register": "^7.12.1",
77 "@comandeer/eslint-config": "^0.2.2",
78 "@comandeer/rollup-lib-bundler": "^0.11.0",
79 "chai": "^4.2.0",
80 "codecov": "^3.8.0",
81 "commitplease": "^3.2.0",
82 "cz-conventional-changelog": "^3.3.0",
83 "eslint": "^7.11.0",
84 "husky": "^4.3.0",
85 "mocha": "^8.2.0",
86 "nyc": "^15.1.0",
87 "proxyquire": "^2.1.3",
88 "rimraf": "^3.0.2",
89 "sinon": "^9.2.0",
90 "sinon-chai": "^3.5.0",
91 "sourcemap-validator": "^2.1.0"
92 },
93 "dependencies": {
94 "@babel/core": "^7.12.3",
95 "@babel/preset-env": "^7.12.1",
96 "@rollup/plugin-babel": "^5.2.1",
97 "@rollup/plugin-commonjs": "^15.1.0",
98 "@rollup/plugin-json": "^4.1.0",
99 "rollup": "^2.32.0",
100 "rollup-plugin-terser": "^7.0.2"
101 }
102}