-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (69 loc) · 1.69 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
{
"name": "comfreek-async-playground",
"version": "0.0.1",
"description": "",
"private": true,
"scripts": {
"docs": "node node_modules/typedoc/bin/typedoc --out docs queue/ semaphore/",
"test": "nyc mocha",
"coverage": "nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"author": "ComFreek <[email protected]>",
"homepage": "https://github.com/ComFreek/async-playground",
"bugs": "https://github.com/ComFreek/async-playground/issues",
"repository": "github:ComFreek/async-playground",
"license": "ISC",
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.common-spec.ts",
"coverage/**",
"docs/**",
"examples/**"
],
"reporter": [
"html"
],
"all": true,
"cache": false
},
"renovate": {
"extends": [
"config:base"
]
},
"mocha": {
"package": "./package.json",
"extension": ["ts", "tsx", "js"],
"spec": ["**/*spec.ts"],
"watch-files": ["**/*.ts"],
"watch-ignore": ["coverage/**", "docs/**", "examples/**"],
"require": ["ts-node/register", "source-map-support/register"],
"recursive": true,
"ui": "bdd",
"reporter": "spec",
"diff": true,
"slow": 1300,
"timeout": 2500
},
"devDependencies": {
"@types/chai": "4.2.15",
"@types/chai-as-promised": "7.1.3",
"@types/lodash": "4.14.168",
"@types/mocha": "8.2.2",
"@types/node": "14.14.37",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"coveralls": "3.1.0",
"mocha": "8.3.2",
"nyc": "15.1.0",
"source-map-support": "0.5.19",
"ts-node": "9.1.1",
"typedoc": "0.20.34",
"typescript": "4.2.3"
}
}