-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.37 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": "savor",
"version": "1.3.0",
"description": "Make your Node Typescript unit testing a piece a cake.",
"scripts": {
"build": "bin/cli.js build",
"test": "bin/cli.js test",
"cov": "bin/cli.js cov",
"viewcov": "bin/cli.js viewcov"
},
"bin": {
"savor": "bin/cli.js"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"bin/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fluidtrends/savor.git"
},
"author": "I. Dan Calinescu <idancalinescu@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fluidtrends/savor/issues"
},
"keywords": [
"bdd",
"fluidtrends",
"tdd",
"mocha",
"unit-testing",
"testing",
"qa",
"test",
"coverage"
],
"homepage": "https://github.com/fluidtrends/savor",
"dependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/fs-extra": "^8.1.0",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.5",
"@types/sinon": "^9.0.0",
"@types/tmp": "^0.2.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.2",
"fs-extra": "^0.30.0",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^15.0.0",
"sinon": "^8.1.1",
"tmp": "0.0.28",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
}
}