-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.74 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@teclone/rollup-all",
"version": "0.0.0-development",
"description": "A lightweight, extensive and configurable npm package for building all your ES6 source codes in one parse using rollup",
"publishConfig": {
"access": "public"
},
"main": "build/cjs/index",
"module": "build/es/index",
"typings": "build/cjs/index",
"bin": "./bin/index.js",
"files": [
"build",
"bin"
],
"scripts": {
"prepare": "husky install",
"compile": "tsc --noEmit",
"commit": "git-cz",
"test": "BABEL_ENV=test jest --runInBand",
"watch-test": "BABEL_ENV=test jest --watch --runInBand",
"lint": "eslint ./src --fix",
"typings": "tsc --p ./tsconfig.build.json",
"babel": "BABEL_ENV=build babel src --out-dir temp --extensions .ts",
"build": "yarn babel && rimraf ./build && node bin/index",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/teclone/rollup-all.git"
},
"keywords": [
"rollup",
"build-tool",
"library",
"typescript-build",
"minified"
],
"author": "Harrison Ifeanyichukwu <Harrisonifeanyichukwu@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/teclone/rollup-all/issues"
},
"homepage": "https://github.com/teclone/rollup-all#readme",
"devDependencies": {
"@babel/cli": "7.12.17",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/jest": "25.2.3",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"babel-jest": "^26.6.3",
"commitizen": "^4.3.0",
"coveralls": "3.1.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.11",
"jest": "26.0.1",
"semantic-release": "^17.3.9",
"semantic-release-cli": "^5.4.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-transform-runtime": "7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-dynamic-import-vars": "^2.0.3",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-terser": "^0.4.0",
"@types/node": "^14.14.31",
"args": "5.0.1",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"chalk": "4.0.0",
"glob-to-regexp": "0.4.1",
"rimraf": "^5.0.0",
"rollup": "^2.39.0",
"rollup-plugin-preserve-shebang": "^1.0.1",
"typescript": "^4.1.5"
}
}