-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.35 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
{
"name": "babel-plugin-export-for-test",
"version": "1.0.4",
"description": "A babel plugin to export test functions.",
"main": "src/index.js",
"scripts": {
"build": "npm run clean && npm run typecheck && npm run build-src && npm run dist",
"build-src": "babel --copy-files --out-dir build/src src",
"build-src-and-tests": "BABEL_ENV=test babel --out-dir build/src src",
"clean": "rm -rf dist & rm -rf build",
"dist": "rollup -c",
"push": "npm run aws-package && npm run aws-deploy",
"repl": "babel-node",
"temp": "BABEL_ENV=test babel --out-dir build/test test",
"temp2": "BABEL_ENV=prod babel --out-dir build/test test",
"test": "BABEL_ENV=test babel-node test",
"typecheck": "flow"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-async-to-module-method": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.2.1",
"babel-register": "^6.24.0",
"babelrc-rollup": "^3.0.0",
"creed": "^1.2.1",
"flow-bin": "^0.41.0",
"glob": "^7.1.2",
"rollup": "^0.41.5",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^2.0.0"
},
"author": "John Hann (unscriptable)",
"license": "MIT"
}