-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
56 lines (56 loc) · 1.42 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
{
"name": "teenytest",
"version": "6.0.5",
"description": "A teeny tiny test runner",
"main": "index.js",
"bin": "bin/teenytest",
"repository": {
"type": "git",
"url": "git+https://github.com/testdouble/teenytest.git"
},
"scripts": {
"style": "standard --fix",
"test": "npm run test:unit && npm run test:safe && npm run test:safe:bats && npm run test:safe:esm && npm run style",
"test:unit": "cd unit && npm install && npm test",
"test:safe": "node ./safe/support/runner.js",
"test:safe:esm": "cd example/esm-node && npm test -- test/lib/dog-test.mjs:10",
"test:safe:bats": "bash -c 'bats --tap --recursive safe'"
},
"keywords": [
"teeny",
"tiny",
"testing",
"tap",
"tap13"
],
"author": "Justin Searls <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/testdouble/teenytest/issues"
},
"homepage": "https://github.com/testdouble/teenytest#readme",
"dependencies": {
"async": "^3.2.4",
"function-names-at-line": "^1.1.0",
"glob": "^8.1.0",
"lodash": "^4.17.21",
"lodash-deeper": "^1.1.0",
"minimist": "^1.2.8",
"resolve": "^1.22.1"
},
"devDependencies": {
"bats": "^1.9.0",
"core-assert": "^1.0.0",
"standard": "^17.0.0",
"which": "^3.0.0"
},
"standard": {
"ignore": [
"/unit/node_modules",
"/example/**/node_modules"
],
"global": [
"assert"
]
}
}