-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
122 lines (122 loc) · 2.79 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
119
120
121
122
{
"name": "optional-require",
"version": "1.1.8",
"description": "NodeJS Require that let you handle module not found error without try/catch",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"test": "xrun --serial build xarc/test-only",
"coverage": "xrun --serial build xarc/test-cov",
"publish-util-pre": "publish-util-prepublishonly",
"prepublishOnly": "xrun --serial [[build, docs], xarc/check, publish-util-pre]",
"docs": "xrun xarc/docs && touch docs/.nojekyll",
"postpack": "publish-util-postpack"
},
"repository": {
"type": "git",
"url": "https://github.com/jchip/optional-require.git"
},
"keywords": [
"optional require",
"optional",
"require"
],
"files": [
"dist",
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=4"
},
"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",
"istanbul": "^0.4.5",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"publish-util": "^1.1.6",
"sinon": "^9.2.2",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typedoc": "^0.20.13",
"typescript": "^4.1.3"
},
"dependencies": {
"require-at": "^1.0.6"
},
"prettier": {
"printWidth": 120
},
"mocha": {
"require": [
"ts-node/register",
"source-map-support/register",
"@xarc/module-dev/config/test/setup.js"
],
"recursive": true
},
"nyc": {
"extends": [
"@istanbuljs/nyc-config-typescript"
],
"all": true,
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"*clap.js",
"*clap.ts",
".eslintrc.js",
"coverage",
"docs",
"gulpfile.js",
"test",
"xrun*.js",
"xrun*.ts",
"src",
"dist/**/*.ts",
"index.d.ts"
],
"check-coverage": true,
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100,
"cache": true,
"exclude-after-remap": false,
"sourceMap": true,
"produce-source-map": true
},
"@xarc/module-dev": {
"features": [
"eslint",
"eslintTS",
"mocha",
"prettier",
"typedoc",
"typescript"
]
}
}