-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 707 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 707 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
{
"name": "tapsert",
"version": "2.0.0",
"description": "Drop in assert replacement that produces TAP output.",
"main": "index.js",
"scripts": {
"test": "tap --100 test/index.js",
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "git push origin --all; git push origin --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/tapjs/tapsert.git"
},
"keywords": [
"assert",
"TAP"
],
"author": "Ryan Graham <r.m.graham@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tapjs/tapsert/issues"
},
"homepage": "https://github.com/tapjs/tapsert",
"devDependencies": {
"tap": "^15.1.6"
}
}