-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 2.41 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "tap-junit",
"version": "5.0.4",
"description": "Silly small, silly easy junit output formatter for tap.",
"main": "src/index.js",
"bin": {
"tap-junit": "bin/tap-junit"
},
"scripts": {
"prepack": "npm run lint",
"test": "tape tests/pass.js | cross-env bin/tap-junit -o output/test -n pass -s suite-name -p",
"test:ava": "cross-env bin/tap-junit --output output --name ava.xml --suite ava --input tests/ava.tap -p",
"ci:input": "cross-env bin/tap-junit --output output --name api.xuni --suite api-test --input tests/non-tape.tap",
"ci:zero": "tape tests/pass.js | cross-env bin/tap-junit > output/pass-zero.xml",
"ci:nontape": "cross-env bin/tap-junit --output output/test --name nontape.xml < tests/non-tape.tap",
"ci:nooutput": "tape tests/pass.js | cross-env bin/tap-junit",
"ci:skip": "tape tests/skip.js | cross-env bin/tap-junit -o output/test -n skip",
"ci:jtap": "cross-env bin/tap-junit -o output -n dependencies.xml -i tests/j-tap.tap -c jenkins-deps",
"test:tape": "tape tests/pass.js",
"test:tapx": "cross-env bin/tap-junit -i tests/tapX.tap -o output/test -n tapx",
"test:bat": "cross-env bin/tap-junit -i tests/bats-1.0.0.txt -o output/test -n bat -p",
"test:basic": "cross-env bin/tap-junit -i tests/basic.tap -o output/test -n basic -p",
"test:basic2": "cross-env bin/tap-junit -i tests/basic2.tap -o output/test -n basic2 -p",
"all": "npm-run-all test test:* ci:*",
"ci": "npm-run-all test ci:*",
"test:fail": "tape tests/fail.js | cross-env bin/tap-junit --output output/test -n failure -p",
"test:err": "tape tests/error.js | cross-env bin/tap-junit --output output/test",
"test:yaml": "cat tests/yaml.tap | cross-env bin/tap-junit -o output/test -n yaml",
"lint": "standard src/**"
},
"repository": {
"type": "git",
"url": "https://github.com/dhershman1/tap-junit.git"
},
"keywords": [
"test",
"tap",
"tape",
"xml",
"reporter",
"xunit",
"junit"
],
"author": "Dustin Hershman <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dhershman1/tap-junit/issues"
},
"homepage": "https://github.com/dhershman1/tap-junit#readme",
"dependencies": {
"minimist": "1.2.8",
"tap-parser": "18.0.0",
"xmlbuilder2": "3.1.1"
},
"devDependencies": {
"cross-env": "7.0.3",
"npm-run-all": "4.1.5",
"standard": "17.1.2",
"tape": "5.9.0"
}
}