-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
53 lines (53 loc) · 1.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
{
"name": "babel-plugin-typecheck",
"version": "3.9.0",
"description": "Transforms flow type annotations into runtime type checks.",
"main": "lib/index.js",
"scripts": {
"build": "babel --plugins syntax-flow,transform-flow-strip-types -d ./lib ./src",
"build-typed": "npm run build && babel --plugins ../lib,syntax-flow,transform-flow-strip-types -d ./lib-checked ./src",
"prepublish": "npm run test-checked",
"pretest": "npm run build",
"test": "mocha ./test/index.js",
"test-checked": "npm run build-typed && TYPECHECK_USE_LIBCHECKED=1 mocha ./test/index.js",
"watch": "NODE_WATCH=1 mocha --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/codemix/babel-plugin-typecheck"
},
"keywords": [
"babel",
"babel-plugin",
"types",
"typing",
"typecheck",
"type check",
"flow"
],
"author": "Charles Pick <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codemix/babel-plugin-typecheck/issues"
},
"homepage": "https://github.com/codemix/babel-plugin-typecheck",
"dependencies": {
"babel-generator": "^6.7.7"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.1.0",
"babel-plugin-syntax-class-properties": "^6.1.18",
"babel-plugin-syntax-flow": "^6.0.14",
"babel-plugin-transform-decorators-legacy": "^1.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.1.3",
"babel-plugin-transform-flow-strip-types": "^6.0.14",
"babel-polyfill": "^6.0.16",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"mocha": "~2.2.4",
"should": "^6.0.1"
}
}