-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
126 lines (126 loc) · 2.84 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
123
124
125
126
{
"name": "electrode-confippet",
"version": "1.7.1",
"description": "Managing NodeJS application configuration",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && tsc",
"test": "xrun xarc/test-only",
"check": "xrun --serial build xarc/check",
"prepublishOnly": "xrun [[build, docs], xarc/check]",
"coverage": "xrun --serial build xarc/test-cov",
"docs": "xrun xarc/docs",
"prepare": "npm run build"
},
"keywords": [],
"author": "Joel Chen <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/electrode-io/electrode-confippet.git"
},
"engines": {
"node": ">= 4.2.2"
},
"license": "Apache-2.0",
"dependencies": {
"js-yaml": "^3.5.3",
"lodash": "^4.13.1",
"tslib": "^2.1.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.14",
"@types/lodash": "^4.14.168",
"@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": "^3.2.1",
"@xarc/run": "^1.0.4",
"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",
"intercept-stdout": "^0.1.2",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"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"
},
"@xarc/module-dev": {
"features": [
"eslint",
"eslintTS",
"mocha",
"prettier",
"typedoc",
"typescript"
]
},
"nyc": {
"extends": [
"@istanbuljs/nyc-config-typescript"
],
"all": true,
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"*clap.js",
"*clap.ts",
"coverage",
"dist",
"docs",
"gulpfile.js",
"lib/*.ts",
"src",
"test",
"xrun*.js",
"xrun*.ts"
],
"check-coverage": true,
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100,
"cache": false,
"exclude-after-remap": false
},
"eslintConfig": {
"extends": [
"./node_modules/@xarc/module-dev/config/eslint/.eslintrc-node"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
}
},
"files": [
"lib",
"src",
"config.js"
],
"mocha": {
"require": [
"ts-node/register",
"source-map-support/register",
"@xarc/module-dev/config/test/setup.js"
],
"recursive": true
},
"prettier": {
"printWidth": 100
}
}