forked from developit/microbundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.3 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
106
{
"name": "microbundle",
"version": "0.12.0-next.3",
"description": "Zero-configuration bundler for tiny JS libs, powered by Rollup.",
"main": "dist/microbundle.js",
"source": "src/index.js",
"bin": "dist/cli.js",
"scripts": {
"build": "npm run -s build:babel && npm run -s build:self",
"build:babel": "babel-node src/cli.js --target=node --format cjs src/{cli,index}.js",
"build:self": "node dist/cli.js --target=node --format cjs src/{cli,index}.js",
"prepare": "npm run -s build",
"prepare:babel": "babel src/*.js -d dist && npm t",
"lint": "eslint src",
"test": "npm run -s lint && npm run -s build && cross-env BABEL_ENV=test jest",
"release": "npm run -s prepare && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"repository": "developit/microbundle",
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"useTabs": true
},
"jest": {
"testEnvironment": "node",
"testURL": "http://localhost"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [
"bundle",
"rollup",
"micro library"
],
"files": [
"src",
"dist"
],
"author": "Jason Miller <jason@developit.ca> (http://jasonformat.com)",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-flow": "^7.0.0",
"asyncro": "^3.0.0",
"autoprefixer": "^9.6.1",
"babel-plugin-macros": "^2.4.2",
"babel-plugin-transform-async-to-promises": "^0.8.12",
"babel-plugin-transform-replace-expressions": "^0.2.0",
"brotli-size": "^3.0.1",
"camelcase": "^5.3.1",
"cssnano": "^4.1.10",
"es6-promisify": "^6.0.1",
"filesize": "^4.1.2",
"gzip-size": "^5.1.1",
"kleur": "^3.0.3",
"lodash.merge": "^4.6.2",
"module-details-from-path": "^1.0.3",
"pretty-bytes": "^5.2.0",
"rollup": "^1.17.0",
"rollup-plugin-alias": "^1.5.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-bundle-size": "^1.0.1",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-es3": "^1.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript2": "^0.22.0",
"sade": "^1.6.0",
"tiny-glob": "^0.2.6",
"tslib": "^1.10.0",
"typescript": "^3.5.3"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"babel-jest": "^24.8.0",
"cross-env": "^5.2.0",
"directory-tree": "^2.2.3",
"eslint": "^6.0.1",
"eslint-config-developit": "^1.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"esm": "^3.2.22",
"fs-extra": "^8.1.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"regenerator-runtime": "^0.13.2",
"rimraf": "^2.6.3",
"shell-quote": "^1.6.1",
"strip-ansi": "^5.2.0",
"travis-size-report": "^1.1.0"
}
}