-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 783 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 783 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
{
"name": "asserts",
"description": "Test grouping and formatting to make working with vanilla node assert marginally easier",
"version": "4.0.2",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/stephenhandley/asserts.git"
},
"bugs": {
"url": "http://github.com/stephenhandley/asserts/issues"
},
"scripts": {
"test": "node test/test.js"
},
"keywords": [
"test",
"assert"
],
"engines": {
"node": ">=0.10.5"
},
"directories": {
"lib": "lib",
"test": "test",
"examples": "examples"
},
"dependencies": {
"type-of-is" : "~3.3.0"
},
"author": {
"name": "Stephen Handley",
"email": "stephen.handley@gmail.com",
"url": "http://person.sh"
}
}