-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 818 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 818 Bytes
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
{
"name": "trap",
"version": "0.4.2",
"description": "A simpler way to test your code.",
"main": "index.js",
"bin": {
"node-trap": "bin/trap.js",
"trap": "bin/trap.js"
},
"scripts": {
"test": "node test/_runner"
},
"repository": {
"type": "git",
"url": "https://github.com/danielmoore/trap.git"
},
"author": "Daniel Moore",
"keywords": [
"tap",
"test",
"harness"
],
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"devDependencies": {
"tape": "~0.1.5",
"proxyquire": "~0.4.0",
"q": "~0.8.12"
},
"dependencies": {
"optimist": "~0.3.5",
"glob": "~3.1.14",
"ansistyles": "~0.1.0",
"ansicolors": "~0.2.1",
"diff": "~1.0.4",
"difflet": "~0.2.3"
}
}