-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 1.88 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
79
80
81
{
"name": "will-mutate",
"version": "1.3.0",
"description": "Runtime test to that detects mutations to objects",
"keywords": [
"babel-plugin",
"mutation",
"testing",
"proxy"
],
"homepage": "https://github.com/ceoss/will-mutate#readme",
"bugs": {
"url": "https://github.com/ceoss/will-mutate/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ceoss/will-mutate.git"
},
"license": "MIT",
"author": "Evelyn Hathaway <[email protected]> (https://evelyn.dev)",
"contributors": [
"Corbin Crutchley <[email protected]> (https://crutchcorn.dev)"
],
"main": "plugin/index.js",
"files": [
"plugin/",
"proxify/",
"utils/",
"noop/",
"!**/__tests__/",
"!**/__mocks__/",
"!**/__fixtures__/"
],
"scripts": {
"format": "eslint --fix ./",
"lint": "eslint ./",
"prepare": "husky install",
"test": "jest"
},
"commitlint": {
"extends": "./node_modules/conventional-changelog-evelyn/commitlint.config.js"
},
"lint-staged": {
"**/package.json": "sort-package-json",
"./": "eslint --fix"
},
"release": {
"extends": "conventional-changelog-evelyn/release.config.js"
},
"dependencies": {
"@babel/cli": "^7.19.3",
"@babel/parser": "^7.18.11",
"@babel/traverse": "^7.19.3",
"@babel/types": "^7.18.10"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.18.10",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"babel-plugin-tester": "^10.1.0",
"babel-test": "^0.2.4",
"commitlint": "^17.0.3",
"conventional-changelog-evelyn": "^1.3.1",
"eslint": "^8.22.0",
"eslint-plugin-evelyn": "^7.0.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-file-snapshot": "^0.5.0",
"lint-staged": "^13.0.3",
"semantic-release": "^19.0.3",
"sort-package-json": "^1.57.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
},
"engines": {
"node": ">=10.0.0"
}
}