forked from developit/microbundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.71 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
{
"name": "microbundle",
"version": "0.6.0",
"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 --format cjs src/{cli,index}.js --presets env",
"build:self": "node dist/cli.js --format cjs src/{cli,index}.js",
"precommit": "lint-staged",
"prepare": "npm run -s build",
"prepare:babel": "babel --presets env src/*.js -d dist && npm t",
"lint": "eslint src",
"test": "npm run -s lint && npm run -s build && 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",
"babel": {
"presets": [
"env"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"useTabs": true
},
"jest": {
"testEnvironment": "node",
"testURL": "http://localhost"
},
"keywords": [
"bundle",
"rollup",
"micro library"
],
"files": [
"src",
"dist"
],
"author": "Jason Miller <[email protected]> (http://jasonformat.com)",
"license": "MIT",
"dependencies": {
"acorn-jsx": "^4.1.1",
"asyncro": "^3.0.0",
"autoprefixer": "^9.0.0",
"babel-polyfill": "^6.26.0",
"brotli-size": "^0.0.3",
"camelcase": "^5.0.0",
"chalk": "^2.4.0",
"cssnano": "^4.0.0",
"es6-promisify": "^6.0.0",
"gzip-size": "^5.0.0",
"pretty-bytes": "^5.1.0",
"rollup": "^0.63.0",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-bundle-size": "^1.0.1",
"rollup-plugin-commonjs": "^9.0.0",
"rollup-plugin-es3": "^1.1.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-nodent": "^0.2.2",
"rollup-plugin-postcss": "^1.6.1",
"rollup-plugin-preserve-shebang": "^0.1.6",
"rollup-plugin-sizes": "^0.4.2",
"rollup-plugin-strict-alias": "^1.0.0",
"rollup-plugin-typescript2": "^0.13.0",
"rollup-plugin-uglify": "^3.0.0",
"sade": "^1.4.0",
"tiny-glob": "^0.2.0",
"tslib": "^1.9.0",
"typescript": ">=2.8.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"directory-tree": "^2.1.0",
"eslint": "^5.0.0",
"eslint-config-developit": "^1.1.1",
"eslint-config-prettier": "^3.0.0",
"eslint-plugin-prettier": "^2.6.0",
"fs-extra": "^7.0.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.1.0",
"prettier": "^1.13.0",
"rimraf": "^2.6.2",
"shell-quote": "^1.6.1",
"strip-ansi": "^4.0.0"
}
}