-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.39 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
{
"name": "@wedevelopnl/silverstripe-cypress-support",
"version": "0.0.19",
"description": "A collection of Cypress helpers to simplify testing of a Silverstripe website",
"license": "BSD-3-Clause license",
"exports": {
".": "./dist/silverstripe-cypress-support.js",
"./dist/*.js": "./dist/*.js",
"./dist/**/*.js": "./dist/**/*.js",
"./package.json": "./package.json"
},
"publishConfig": {
"@wedevelopnl:registry": "https://npm.pkg.github.com"
},
"files": [
"dist"
],
"scripts": {
"bundle": "rollup -c"
},
"author": {
"name": "WeDevelop",
"email": "[email protected]",
"url": "https://wedevelop.nl"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wedevelopnl/silverstripe-cypress-support.git"
},
"keywords": [
"Cypress",
"command"
],
"dependencies": {
"dotenv": "^16.3.1",
"mysql": "^2.18.1",
"node-fetch": "^2.6.12"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-json": "^6.0.0",
"rollup": "^3.27.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-preserve-shebangs": "^0.2.0"
},
"bin": {
"reload-database": "dist/support/reload-database.js"
}
}