forked from seanhess/runtime-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1008 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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "runtime-types",
"version": "1.0.7",
"description": "Use flow type information at runtime. Useful for validations, mapping to an ORM, and more. ",
"keywords": [
"orm",
"flow",
"type",
"static types",
"runtime",
"validate",
"validation",
"object",
"valid",
"typecheck"
],
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/seanhess/runtime-types.git"
},
"homepage": "https://github.com/seanhess/runtime-types",
"scripts": {
"prepublish": "npm run build",
"test": "babel-node test/example.js",
"build": "node_modules/.bin/babel --no-comments -d build/ src/"
},
"author": {
"name": "Sean Hess",
"url": "http://seanhess.github.io"
},
"license": "MIT",
"dependencies": {
"esprima-fb": "15001.1.0-dev-harmony-fb",
"lodash": "3.9.3"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0"
}
}