This repository has been archived by the owner on Aug 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
76 lines (76 loc) · 1.64 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "tman",
"version": "1.10.0",
"description": "T-man: Super test manager for JavaScript.",
"authors": [
"Yan Qing <[email protected]>"
],
"main": "lib/tman.js",
"typings": "index.d.ts",
"bin": {
"tman": "./bin/tman",
"_tman": "./bin/_tman"
},
"scripts": {
"test": "standard && bin/tman 'test/*.js'",
"test-all": "make test",
"test-cov": "standard && istanbul cover bin/_tman 'test/*.js'",
"test-typings": "bin/tman -r ts-node/register test/typings.test.ts",
"browser": "browserify lib/browser.js -s tman -o browser/tman.js"
},
"repository": {
"type": "git",
"url": "[email protected]:thunks/tman.git"
},
"keywords": [
"T-man",
"tman",
"test",
"thunk",
"bdd",
"tdd",
"ava",
"mocha"
],
"engines": {
"node": ">= 6"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/thunks/tman/issues"
},
"homepage": "https://github.com/thunks/tman",
"dependencies": {
"commander": "^5.0.0",
"diff": "~4.0.2",
"glob": "~7.1.6",
"supports-color": "^7.1.0",
"thunks": "~4.9.6"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.3",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"coffee-script": "^1.12.7",
"istanbul": "^0.4.5",
"minimist": "^1.2.5",
"standard": "^14.3.3",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"files": [
"README.md",
"bin",
"lib",
"browser",
"index.d.ts"
],
"standard": {
"ignore": [
"browser"
]
}
}