-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 891 Bytes
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 891 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
{
"name": "@jsspec/format",
"version": "0.1.7",
"description": "Output formatter for jsspec",
"main": "index.js",
"scripts": {
"test": "jsspec -r spec/spec_helper.js ",
"coverage": "c8 --all=true --clean=true -r html -r text jsspec -r spec/spec_helper.js -fo -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JSSpec/format.git"
},
"keywords": [
"jsspec",
"test output"
],
"author": "HookyQR",
"license": "MIT",
"bugs": {
"url": "https://github.com/JSSpec/format/issues"
},
"homepage": "https://github.com/JSSpec/format#readme",
"dependencies": {
"diff": "^5.0.0"
},
"devDependencies": {
"@jsspec/jsspec": ">=0.3.0",
"c8": "^7.3.5",
"chai": "^4.2.0",
"prettier": "^2.2.0",
"sinon": "^9.2.1",
"sinon-chai": "^3.5.0"
},
"files": [
"*.js",
"/formatters",
"/lib"
]
}