forked from philbooth/check-types.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (39 loc) · 931 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
{
"name": "check-types",
"version": "0.2.2",
"author": "Phil Booth <[email protected]>",
"description": "A small library for checking types and throwing exceptions.",
"contributors": [
{
"name": "Phil Booth",
"email": "[email protected]"
},
{
"name": "Rowan Manning",
"email": "[email protected]"
}
],
"main": "./src/check-types.js",
"repository": {
"type": "git",
"url": "https://github.com/philbooth/check-types.js"
},
"keywords": [
"types",
"type-checking",
"duck-typing",
"arguments",
"parameters"
],
"devDependencies": {
"jake": "0.3.x",
"jshint": "0.7.x",
"mocha": "1.2.x",
"chai": "1.1.x",
"uglify-js": "1.3.x"
},
"license": "MIT",
"scripts": {
"test": "jake test"
}
}