-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 824 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 824 Bytes
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
{
"name": "rgpmcore",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:rgpm/core.git",
"author": "Kevin Schmittle <kevin@schmittle.net>",
"license": "LGPL-3.0-only",
"devDependencies": {
"electron": "^4.1.3",
"express": "^4.17.1",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"jest-puppeteer": "^4.3.0",
"puppeteer": "^1.19.0",
"webpack": "^4.39.3",
"webpack-dev-middleware": "^3.7.1"
},
"scripts": {
"serve": "node test/server.js",
"test": "jest"
},
"dependencies": {},
"jest": {
"projects": [
{
"displayName": "RGPM Core Tests",
"testMatch": [
"**/test/*.test.js"
],
"preset": "jest-puppeteer",
"globals": {
"PATH": "http://localhost:4444"
}
}
]
}
}