This repository has been archived by the owner on Aug 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2.05 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
{
"name": "mock-inspect",
"version": "5.1.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "./node_modules/eslint/bin/eslint.js 'src/**/*.ts'",
"prettify": "prettier '**/*.ts' --write",
"lintFull": "npm run prettify && npm run lint -- --fix",
"watch": "npm run build -- --watch",
"test": "jest",
"test:coverage": "npm test -- --coverage",
"test:mutation": "stryker run",
"updateTestCoverage": "node scripts/updateTestCoverage.js",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"author": "Tray.io",
"homepage": "https://github.com/trayio/mock-inspect",
"license": "MIT",
"dependencies": {
"graphql": "^15.3.0",
"graphql-tools": "^7.0.4",
"lodash.isobject": "^3.0.2",
"msw": "^0.21.3",
"uuid-readable": "0.0.2"
},
"devDependencies": {
"@stryker-mutator/core": "^4.5.1",
"@stryker-mutator/jest-runner": "^4.5.1",
"@stryker-mutator/typescript-checker": "^4.5.1",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"auto-changelog": "^2.2.1",
"eslint": "^7.24.0",
"eslint-config-rickschubert": "^1.0.11",
"eslint-plugin-jest": "^24.3.5",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-json-schema-extended": "^0.3.0",
"lint-staged": "^10.2.11",
"lodash.clonedeep": "^4.5.0",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4"
},
"lint-staged": {
"*.js": [
"prettier --write",
"./node_modules/eslint/bin/eslint.js --fix"
],
"*.ts": [
"prettier --write",
"./node_modules/eslint/bin/eslint.js --fix"
],
"*.json": [
"prettier --write"
]
}
}