-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.09 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
{
"name": "@swimlane/cy-mockapi",
"version": "3.0.0",
"description": "Easily mock your REST API in Cypress using fixtures",
"main": "build/main/index.js",
"module": "build/module/index.js",
"typings": "index.d.ts",
"types": "index.d.ts",
"files": [
"build",
"index.d.ts"
],
"scripts": {
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint -c .eslintrc.yml --ext .ts ./src/ --fix",
"test": "run-s build test:*",
"test:lint": "eslint -c .eslintrc.yml --ext .ts ./src/",
"test:prettier": "prettier \"src/**/*.ts\" --check",
"test:unit": "cypress run",
"open": "cypress open",
"clean": "trash build test",
"version": "chg release -y && git add -A CHANGELOG.md",
"np": "np",
"prepack": "npm run build",
"audit": "run-s audit:*",
"audit:npm": "npm audit --production"
},
"author": "J. Harshbarger",
"license": "MIT",
"devDependencies": {
"@swimlane/eslint-config": "^2.0.0",
"@swimlane/prettier-config-swimlane": "^3.0.3",
"@types/glob": "^7.2.0",
"@types/node": "^18.18.2",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"chg": "^0.4.0",
"cypress": "^13.12.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-security": "^1.4.0",
"np": "^7.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"trash-cli": "^4.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"glob": "^7.2.0",
"slash": "^3.0.0"
},
"peerDependencies": {
"cypress": ">13.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swimlane/cy-mockapi.git"
},
"bugs": {
"url": "https://github.com/swimlane/cy-mockapi/issues"
},
"homepage": "https://github.com/swimlane/cy-mockapi#readme",
"prettier": {
"singleQuote": true
},
"keywords": [
"testing",
"cypress",
"api",
"mock",
"stub",
"rest"
]
}