-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 2.5 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
{
"name": "prepublish",
"version": "2.2.0",
"description": "Simplifies the prepare step (bundling, transpiling, rebasing) during publishing NPM packages.",
"keywords": [
"npm",
"publish",
"prepublish",
"prepare",
"release",
"library",
"api",
"tooling",
"rollup",
"babel",
"rebase"
],
"engines": {
"node": ">=6.0.0",
"npm": ">=5.0.0",
"yarn": ">=1.0.0"
},
"bin": {
"prepublish": "./bin/prepublish"
},
"files": [
"bin"
],
"author": {
"name": "Sebastian Werner",
"email": "[email protected]",
"url": "http://sebastian-software.de/werner"
},
"license": "Apache-2.0",
"main": "lib/index.js",
"scripts": {
"release": "git push && release-it --github.release --npm.publish --non-interactive",
"release:minor": "git push && release-it --github.release --npm.publish --non-interactive --increment minor",
"release:major": "git push && release-it --github.release --npm.publish --non-interactive --increment major",
"test": "rimraf test/lib test/dist && npm run prepare && node ./bin/prepublish --input-node test/src/index.js --output-folder test/lib && webpack --hide-modules --config test/webpack.config.js",
"prepare": "rimraf bin && cross-env EDGE_ENV=node babel-node src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebastian-software/prepublish.git"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"app-root-dir": "^1.0.2",
"async": "^2.6.1",
"babel-preset-edge": "^4.13.1",
"chalk": "^2.4.1",
"core-js": "^2.5.7",
"file-exists": "^5.0.1",
"fs-extra": "^7.0.0",
"loader-utils": "^1.1.0",
"lodash": "^4.17.11",
"meow": "^5.0.0",
"rollup": "^0.66.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-executable": "^1.3.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-rebase": "^2.0.4",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-yaml": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/node": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"eslint": "^5.6.0",
"eslint-config-readable": "^2.2.0",
"file-loader": "^2.0.0",
"flow-bin": "^0.81.0",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"style-loader": "^0.23.0",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.0"
}
}