-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 908 Bytes
/
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
{
"name": "tape-player",
"version": "0.1.1",
"description": "A simple, terse, in-process reporter for the tape test harness for Node.js.",
"main": "index.js",
"author": "David Anson (https://dlaa.me/)",
"license": "MIT",
"homepage": "https://github.com/DavidAnson/tape-player",
"repository": {
"type": "git",
"url": "https://github.com/DavidAnson/tape-player.git"
},
"bugs": "https://github.com/DavidAnson/tape-player/issues",
"scripts": {
"ci": "npm test && npm run lint",
"lint": "eslint *.js test && markdownlint *.md",
"test": "node test/test-scenarios.js"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"tape": ">=4"
},
"dependencies": {},
"devDependencies": {
"eslint": "^7.2.0",
"execa": "^4.0.2",
"markdownlint-cli": "^0.23.1",
"tape": "^5.0.1"
},
"keywords": [
"tape",
"test",
"reporter"
]
}