This repository was archived by the owner on Jan 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.72 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.72 KB
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
61
62
63
64
65
66
{
"name": "typesystem",
"version": "5.0.0",
"description": "Better type checking for JavaScript.",
"keywords": [
"type",
"checking",
"typeof",
"predicate"
],
"author": {
"name": "Clemens Akens",
"email": "clebert@me.com",
"url": "http://clebert.com/"
},
"bugs": {
"url": "https://github.com/clebert/typesystem/issues"
},
"engines": {
"node": ">= 0.10.0"
},
"inceptionYear": 2014,
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/clebert/typesystem/master/LICENSE"
}
],
"main": "lib/ts.js",
"repository": {
"type": "git",
"url": "https://github.com/clebert/typesystem.git"
},
"config": {
"mocha-cov-reporter": {
"failOnError": true,
"threshold": 100,
"useColors": true
}
},
"scripts": {
"test": "node_modules/.bin/grunt"
},
"devDependencies": {
"blanket": "latest",
"expressive-assertion": "latest",
"grunt": "latest",
"grunt-bumpup": "latest",
"grunt-cli": "latest",
"grunt-contrib-jshint": "latest",
"grunt-coveralls": "latest",
"grunt-jscs": "latest",
"grunt-karma": "latest",
"grunt-mocha-test": "latest",
"grunt-module": "latest",
"karma": "latest",
"karma-browserify": "latest",
"karma-mocha": "latest",
"karma-sauce-launcher": "latest",
"karma-spec-reporter": "latest",
"load-grunt-tasks": "latest",
"mocha-cov-reporter": "latest",
"mocha-lcov-reporter": "latest",
"time-grunt": "latest"
}
}