forked from JSMonk/hegel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 867 Bytes
/
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
{
"name": "static-type-checker",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run build:check && npm run build:clean && npm run build:start",
"build:check": "flow",
"build:start": "babel src -d build",
"build:clean": "rm -rf build && mkdir build",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/parser": "^7.1.3"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"flow-bin": "^0.83.0",
"jest": "^23.6.0"
}
}