-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 1.54 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
{
"name": "cypress-laravel",
"version": "0.3.0",
"description": "Cypress plugin to test Laravel applications",
"main": "dist/cypress-laravel.common.js",
"module": "dist/cypress-laravel.esm.js",
"unpkg": "dist/cypress-laravel.js",
"jsdelivr": "dist/cypress-laravel.js",
"types": "types/index.d.ts",
"scripts": {
"dev": "cross-env NODE_ENV=development TARGET_BUILD=esmodule webpack --mode='development' --watch",
"build": "rm dist -rf && npm run build-umd && npm run build-common && npm run build-esm",
"build-umd": "cross-env NODE_ENV=production TARGET_BUILD=umd webpack --mode='production' --no-progress --hide-modules",
"build-common": "cross-env NODE_ENV=production TARGET_BUILD=commonjs webpack --mode='production' --no-progress --hide-modules",
"build-esm": "cross-env NODE_ENV=production TARGET_BUILD=esmodule webpack --mode='production' --no-progress --hide-modules",
"publish-dev": "scripts/publish-dev.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/NoelDeMartin/cypress-laravel.git"
},
"keywords": [
"cypress",
"laravel",
"testing"
],
"author": "Noel De Martin",
"license": "MIT",
"bugs": {
"url": "https://github.com/NoelDeMartin/cypress-laravel/issues"
},
"homepage": "https://github.com/NoelDeMartin/cypress-laravel",
"devDependencies": {
"cross-env": "^6.0.3",
"cypress": "^13.15.2",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"peerDependencies": {
"cypress": "*"
}
}