-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
156 lines (156 loc) · 3.7 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "electrode-react-webapp",
"version": "5.1.1",
"description": "Hapi plugin that provides a default React web app template",
"main": "index.js",
"scripts": {
"build": "echo \"Nothing to build. Just a placeholder\"",
"lint": "clap lint",
"pre-test": "clap compile",
"prepare": "clap compile",
"test": "clap test-only",
"coverage": "clap test-cov",
"check": "clap check",
"prepublishOnly": "clap check",
"format": "prettier --write --print-width 100 *.{js,jsx} `find . -type d -d 1 -exec echo '{}/**/*.{js,jsx}' \\; | egrep -v '(/node_modules/|/dist/|/coverage/)'`"
},
"xclap": {
"tasks": {
"compile": "babel src-template -D -d template",
"test-only": "~[compile, electrode/test-only]",
"check": "~[compile, electrode/check]"
}
},
"homepage": "http://www.electrode.io",
"repository": {
"type": "git",
"url": "https://github.com/electrode-io/electrode.git"
},
"bugs": {
"url": "https://github.com/electrode-io/electrode/issues"
},
"keywords": [
"electrode",
"node",
"webserver"
],
"author": "Electrode (http://www.electrode.io/)",
"contributors": [
{
"name": "Joel Chen",
"email": "[email protected]"
},
{
"name": "Caoyang Shi",
"email": "[email protected]"
},
{
"name": "Arpan Nanavati",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"files": [
"lib",
"template",
"index.js"
],
"dependencies": {
"electrode-archetype-njs-module-dev": "^3.0.3",
"electrode-hapi-compat": "^1.2.0",
"eslint": "^7.32.0",
"eslint-config-walmart": "^2.2.1",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-jsdoc": "^30.7.9",
"http-status-codes": "^1.3.0",
"in-publish": "^2.0.0",
"lodash": "^4.17.10",
"munchy": "^1.0.9",
"require-at": "^1.0.6",
"string-array": "^1.0.0",
"xaa": "^1.6.0"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/register": "^7.22.5",
"@xarc/module-dev": "^4.1.0",
"@xarc/run": "^1.1.1",
"babel-eslint": "^10.1.0",
"benchmark": "^2.1.4",
"chai": "4.3.6",
"electrode-redux-router-engine": "6.0.0",
"electrode-server": "^1.8.0",
"electrode-server2": "npm:electrode-server@^2.0.0",
"eslint": "^7.32.0",
"eslint-config-walmart": "^2.2.1",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-jsdoc": "^30.7.9",
"express": "^4.15.4",
"koa": "^2.3.0",
"koa-router": "^7.4.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"object-assign": "^4.1.0",
"prettier": "^1.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^5.2.0",
"run-verify": "^1.0.2",
"stream-to-array": "^2.3.0",
"superagent": "^1.8.5",
"uglify-js": "^2.6.2",
"xclap": "^0.2.0",
"xstdout": "^0.1.1"
},
"nyc": {
"all": true,
"check-coverage": true,
"statements": 100,
"branches": 98,
"functions": 100,
"lines": 100,
"cache": true,
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"coverage",
"*clap.js",
"gulpfile.js",
"dist",
"test",
"src-template",
"electrode-server2"
],
"extension": [
".jsx"
],
"require": [
"@babel/register"
]
},
"@xarc/module-dev": {
"srcDir": [
"src",
"test",
"scripts"
],
"features": [
"eslint",
"eslintTS",
"mocha",
"typedoc",
"typescript"
]
},
"prettier": {
"printWidth": 100,
"trailingComma": "none",
"arrowParens": "avoid"
}
}