forked from gcanti/tcomb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.04 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
{
"name": "tcomb",
"version": "1.0.0",
"description": "Type checking for JavaScript",
"main": "index.js",
"scripts": {
"cover": "istanbul cover _mocha -- --ui bdd -R dot"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/tcomb.git"
},
"author": "Giulio Canti <giulio.canti@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/tcomb/issues"
},
"homepage": "https://github.com/gcanti/tcomb",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-uglify": "^0.5.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-test": "^0.11.0",
"istanbul": "^0.3.0",
"jshint-stylish": "^0.4.0",
"mocha": "^1.21.4"
},
"tags": [
"type",
"combinators",
"checking",
"safety",
"models",
"domain",
"debugging",
"immutable"
],
"keywords": [
"type",
"combinators",
"checking",
"safety",
"models",
"domain",
"debugging",
"immutable"
]
}