forked from philbooth/check-types.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "check-types",
"version": "7.3.0",
"description": "A little library for asserting types and values.",
"homepage": "https://github.com/philbooth/check-types.js",
"bugs": "https://github.com/philbooth/check-types.js/issues",
"license": "MIT",
"author": "Phil Booth <[email protected]> (https://github.com/philbooth)",
"main": "./src/check-types",
"repository": {
"type": "git",
"url": "https://github.com/philbooth/check-types.js.git"
},
"keywords": [
"type",
"types",
"type-check",
"type-checking",
"duck-typing",
"arguments",
"parameters",
"values",
"data",
"contract",
"assert",
"check",
"verify",
"safe",
"safety"
],
"devDependencies": {
"jshint": "2.9.x",
"mocha": "3.2.x",
"chai": "3.5.x",
"uglify-js": "2.7.x",
"please-release-me": "1.0.x"
},
"scripts": {
"lint": "jshint ./src/check-types.js",
"test": "mocha --ui tdd --reporter spec --colors ./test/check-types.js",
"minify": "uglifyjs ./src/check-types.js --compress --mangle --output ./src/check-types.min.js"
},
"files": [
"COPYING",
"HISTORY.md",
"src"
]
}