-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
105 lines (105 loc) · 2.9 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "preppy",
"version": "11.1.0",
"description": "A simple and lightweight tool for preparing the publish of NPM packages.",
"keywords": [
"npm",
"publish",
"prepare",
"release",
"library",
"tooling",
"rollup",
"babel"
],
"engines": {
"node": ">=14"
},
"bin": {
"preppy": "bin/preppy"
},
"files": [
"bin/"
],
"author": {
"name": "Sebastian Werner",
"email": "[email protected]",
"url": "http://sebastian-software.de/werner"
},
"license": "Apache-2.0",
"scripts": {
"lint": "eslint '**/*.js'",
"format": "effective-prettier '**/*.{js,jsx,ts,tsx,json,md}'",
"release": "git push && release-it --ci patch",
"release:minor": "git push && release-it --ci minor",
"release:major": "git push && release-it --ci major",
"test": "npm run prepare && jest",
"prepare": "rimraf bin && babel-node src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebastian-software/preppy.git"
},
"dependencies": {
"@babel/runtime": "^7.17.8",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.1.0",
"acorn-jsx": "^5.3.2",
"builtin-modules": "^3.2.0",
"chalk": "^4.1.2",
"core-js": "^3.21.1",
"estree-walker": "^2.0.2",
"figures": "^3.2.0",
"find-root": "^1.1.0",
"is-ci": "^3.0.1",
"lodash": "^4.17.21",
"log-symbols": "^4.1.0",
"magic-string": "^0.26.1",
"meow": "^9.0.0",
"node-notifier": "^10.0.1",
"ora": "^5.4.1",
"pretty-bytes": "^5.6.0",
"rollup": "^2.70.1",
"rollup-plugin-advanced-run": "^2.0.1",
"rollup-plugin-executable": "^1.6.3",
"rollup-plugin-rebase": "^4.1.1",
"rollup-plugin-terser": "^7.0.2",
"stack-trace": "^0.0.10",
"strip-bom": "^4.0.0",
"strip-json-comments": "^3.1.1",
"to-regex": "^3.0.2",
"universalify": "^2.0.0",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@effective/eslint-config": "^4.0.2",
"@effective/prettier": "^4.3.4",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.5.1",
"babel-plugin-lodash": "^3.3.4",
"codecov": "^3.8.2",
"cross-env": "^7.0.3",
"eslint": "^8.11.0",
"execa": "^5.1.1",
"jest": "^27.5.1",
"p-queue": "^7.2.0",
"pify": "^5.0.0",
"prettier": "^2.6.0",
"react": "^17.0.2",
"release-it": "^14.13.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.2"
}
}