UNPKG

1.66 kBJSONView Raw
1{
2 "name": "babel-plugin-typecheck",
3 "version": "3.2.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 build",
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 "devDependencies": {
35 "babel-cli": "^6.1.0",
36 "babel-core": "^6.1.0",
37 "babel-generator": "^6.1.2",
38 "babel-plugin-syntax-flow": "^6.0.14",
39 "babel-plugin-syntax-class-properties": "^6.1.18",
40 "babel-plugin-transform-es2015-modules-commonjs": "^6.1.3",
41 "babel-plugin-transform-flow-strip-types": "^6.0.14",
42 "babel-polyfill": "^6.0.16",
43 "babel-preset-es2015": "^6.1.0",
44 "babel-preset-react": "^6.1.0",
45 "babel-preset-stage-0": "^6.1.18",
46 "babel-preset-stage-1": "^6.1.0",
47 "mocha": "~2.2.4",
48 "should": "^6.0.1"
49 }
50}