forked from gcanti/tcomb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.12 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
54
55
56
57
58
59
60
{
"name": "tcomb-forked",
"version": "3.5.0",
"description": "Type checking and DDD for JavaScript",
"main": "index.js",
"typings": "index.d.ts",
"files": [
"index.js",
"lib",
"index.d.ts"
],
"scripts": {
"lint": "eslint index.js lib test",
"test": "npm run lint && mocha",
"dist": "webpack",
"perf": "node ./perf/perf"
},
"repository": {
"type": "git",
"url": "https://github.com/christophehurpeau/tcomb.git"
},
"author": "Giulio Canti <giulio.canti@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/tcomb/issues"
},
"homepage": "https://github.com/christophehurpeau/tcomb",
"devDependencies": {
"benchmark": "2.1.0",
"eslint": "1.10.3",
"mocha": "2.3.4",
"webpack": "1.12.14"
},
"tags": [
"type",
"combinators",
"checking",
"safety",
"model",
"domain",
"debugging",
"immutable",
"DDD",
"JSON",
"store"
],
"keywords": [
"type",
"combinators",
"checking",
"safety",
"model",
"domain",
"debugging",
"immutable",
"DDD",
"JSON",
"store"
]
}