-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
120 lines (120 loc) · 2.52 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
{
"name": "@xarc/module-dev",
"version": "4.1.0",
"main": "dist/index.js",
"description": "Support for developing node.js modules with mocha/eslint/typescript",
"scripts": {
"build": "tsc",
"test": "xrun xarc/test",
"coverage": "xrun check",
"compile": "tsc",
"postinstall": "node install.js",
"docs": "xrun xarc/docs",
"prepublishOnly": "xrun [[build, docs], xarc/check]"
},
"repository": {
"type": "git",
"url": "https://github.com/electrode-io/module-dev.git"
},
"author": "Joel Chen",
"license": "Apache-2.0",
"files": [
"config",
"dist",
"install.js",
"src"
],
"keywords": [
"node",
"node.js",
"npm",
"module",
"develop",
"mocha",
"eslint",
"typescript"
],
"dependencies": {
"@xarc/run": "^1.0.4",
"filter-scan-dir": "^1.0.10",
"lodash": "^4.17.20",
"tsconfig": "^7.0.0",
"tslib": "^2.1.0",
"xsh": "^0.4.5"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.14.16",
"@types/sinon": "^9.0.0",
"@types/sinon-chai": "^3.2.4",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"eslint": "^7.32.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": "^9.1.0",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"sinon": "^7.2.6",
"sinon-chai": "^3.3.0",
"source-map-support": "^0.5.19",
"ts-node": "^10.2.1",
"typedoc": "^0.21.6",
"typescript": "^4.3.5"
},
"prettier": {
"printWidth": 100
},
"engines": {
"node": ">=10"
},
"mocha": {
"require": [
"ts-node/register",
"source-map-support/register",
"./config/test/setup.js"
],
"recursive": true
},
"nyc": {
"extends": [
"@istanbuljs/nyc-config-typescript"
],
"all": true,
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"*clap.js",
"*clap.ts",
"coverage",
"dist",
"docs",
"gulpfile.js",
"test"
],
"check-coverage": false,
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100,
"cache": false
},
"@xarc/module-dev": {
"features": [
"eslint",
"eslintTS",
"mocha",
"typedoc",
"typescript"
]
}
}