UNPKG

1.69 kBJSONView Raw
1{
2 "name": "babel-plugin-typecheck",
3 "version": "3.5.1",
4 "description": "Transforms flow type annotations into runtime type checks.",
5 "main": "lib/index.js",
6 "scripts": {
7 "build": "babel --plugins syntax-flow,transform-flow-strip-types -d ./lib ./src",
8 "build-typed": "npm run build && babel --plugins ./lib,syntax-flow,transform-flow-strip-types -d ./lib-checked ./src",
9 "prepublish": "npm run test-checked",
10 "pretest": "npm run build",
11 "test": "mocha ./test/index.js",
12 "test-checked": "npm run build-typed && TYPECHECK_USE_LIBCHECKED=1 mocha ./test/index.js",
13 "watch": "NODE_WATCH=1 mocha --watch"
14 },
15 "repository": {
16 "type": "git",
17 "url": "https://github.com/codemix/babel-plugin-typecheck"
18 },
19 "keywords": [
20 "babel",
21 "babel-plugin",
22 "types",
23 "typing",
24 "typecheck",
25 "type check",
26 "flow"
27 ],
28 "author": "Charles Pick <charles@codemix.com>",
29 "license": "MIT",
30 "bugs": {
31 "url": "https://github.com/codemix/babel-plugin-typecheck/issues"
32 },
33 "homepage": "https://github.com/codemix/babel-plugin-typecheck",
34 "dependencies": {
35 "babel-generator": "^6.1.2"
36 },
37 "devDependencies": {
38 "babel-cli": "^6.1.0",
39 "babel-core": "^6.1.0",
40 "babel-plugin-syntax-flow": "^6.0.14",
41 "babel-plugin-syntax-class-properties": "^6.1.18",
42 "babel-plugin-transform-es2015-modules-commonjs": "^6.1.3",
43 "babel-plugin-transform-flow-strip-types": "^6.0.14",
44 "babel-polyfill": "^6.0.16",
45 "babel-preset-es2015": "^6.1.0",
46 "babel-preset-react": "^6.1.0",
47 "babel-preset-stage-0": "^6.1.18",
48 "babel-preset-stage-1": "^6.1.0",
49 "mocha": "~2.2.4",
50 "should": "^6.0.1"
51 }
52}