This repository has been archived by the owner on Oct 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "babelrc-rollup",
"description": "Builds a babel configuration for rollup-plugin-babel by reading .babelrc.",
"main": "dist/babelrc-rollup.js",
"jsnext:main": "dist/babelrc-rollup.mjs",
"scripts": {
"flow": "flow check",
"build": "rollup -c",
"pretest": "npm run flow && npm run bootstrap",
"test": "mocha",
"bootstrap": "./script/bootstrap",
"prepublish": "npm test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/eventualbuddha/babelrc-rollup.git"
},
"keywords": [
"babel",
"rollup"
],
"files": [
"dist"
],
"author": "Brian Donovan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eventualbuddha/babelrc-rollup/issues"
},
"homepage": "https://github.com/eventualbuddha/babelrc-rollup#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-external-helpers": "^6.8.0",
"babel-plugin-syntax-flow": "^6.13.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-es2015-parameters": "^6.11.4",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"flow-bin": "^0.30.0",
"mocha": "^3.0.2",
"reify": "^0.3.6",
"rollup": "^0.34.7",
"rollup-plugin-babel": "^2.6.1",
"semantic-release": "^4.3.5"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"resolve": "^1.1.7"
}
}