-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
118 lines (118 loc) · 2.59 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "xaa",
"version": "1.7.3",
"description": "async/await/Promise helpers - delay, defer, timeout, each, map, filter",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"test": "xrun -s build xarc/test-only",
"coverage": "xrun -s build xarc/test-cov",
"prepublishOnly": "xrun [[build, docs] xarc/check]",
"docs": "clap xarc/docs && touch docs/.nojekyll"
},
"homepage": "https://jchip.github.io/xaa/",
"repository": {
"type": "git",
"url": "https://github.com/jchip/xaa.git"
},
"keywords": [
"async",
"await",
"Promise",
"helpers",
"async/await",
"delay",
"defer",
"timeout",
"each",
"map",
"filter"
],
"files": [
"dist"
],
"author": "Joel Chen",
"license": "Apache-2.0",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.16",
"@types/sinon": "^9.0.10",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"@xarc/module-dev": "^4.0.0",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"eslint": "^7.16.0",
"eslint-config-walmart": "^2.2.1",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-jsdoc": "^30.7.9",
"eslint-plugin-tsdoc": "^0.2.11",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"run-verify": "^1.2.1",
"sinon": "^9.2.2",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typedoc": "^0.22.12",
"typescript": "^4.1.3"
},
"nyc": {
"extends": [
"@istanbuljs/nyc-config-typescript"
],
"all": true,
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"*clap.js",
"*clap.ts",
"coverage",
"dist",
"docs",
"gulpfile.js",
"test",
"xrun*.js",
"xrun*.ts",
".eslintrc.js"
],
"check-coverage": true,
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100,
"cache": false
},
"prettier": {
"printWidth": 100,
"trailingComma": "none",
"arrowParens": "avoid"
},
"@xarc/module-dev": {
"features": [
"eslint",
"eslintTS",
"mocha",
"prettier",
"typedoc",
"typescript"
]
},
"mocha": {
"require": [
"ts-node/register",
"source-map-support/register",
"@xarc/module-dev/config/test/setup.js"
],
"recursive": true
},
"dependencies": {}
}