-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "rollup-plugin-flow",
"version": "1.1.1",
"description": "Remove Flow type annotations before bundling.",
"author": "Lee Byron <[email protected]> (http://leebyron.com/)",
"license": "BSD-3-Clause",
"main": "index.js",
"files": [
"index.js",
"LICENSE"
],
"homepage": "https://github.com/leebyron/rollup-plugin-flow",
"bugs": {
"url": "https://github.com/leebyron/rollup-plugin-flow/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/leebyron/rollup-plugin-flow.git"
},
"scripts": {
"test": "DIFF=$(rollup -c test/rollup.config.js test/source.js | diff test/expected.js -); if [ -n \"$DIFF\" ]; then echo \"$DIFF\"; exit 1; fi;",
"test-update": "rollup -c test/rollup.config.js test/source.js > test/expected.js"
},
"keywords": [
"rollup-plugin",
"flow",
"flowtype",
"strip"
],
"dependencies": {
"flow-remove-types": "^1.1.0",
"rollup-pluginutils": "^1.5.1"
},
"devDependencies": {
"rollup": "^0.36.0"
}
}