-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.83 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.83 KB
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
{
"name": "unit-test-recorder",
"bin": {
"unit-test-recorder": "src/index.js"
},
"version": "1.0.0",
"description": "A cli tool records usage and generates unit tests",
"main": "index.js",
"scripts": {
"start": "node ./src/index.js",
"lint": "eslint ./src/*",
"lint:fix": "eslint ./src/* --fix",
"test": "jest",
"test:als": "UTR_EXPERIMENTAL_ALS=true jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/Ghost---Shadow/unit-test-recorder"
},
"keywords": [
"babel",
"testing",
"cli",
"jest",
"instrumentation"
],
"author": "Souradeep Nanda",
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@babel/preset-env": "^7.24.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.0",
"husky": "^9.1.0",
"jest": "^29.7.0",
"jest-file-snapshot": "^0.5.0"
},
"dependencies": {
"@babel/core": "^7.24.0",
"@babel/generator": "^7.24.0",
"@babel/parser": "^7.24.0",
"@babel/plugin-proposal-class-properties": "^7.18.0",
"@babel/preset-typescript": "^7.24.0",
"@babel/template": "^7.24.0",
"@babel/traverse": "^7.24.0",
"@babel/types": "^7.24.0",
"cls-hooked": "^4.2.2",
"is-promise": "^4.0.0",
"json-stable-stringify": "^1.1.0",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"prettier": "^2.8.0",
"rimraf": "^5.0.0",
"typescript": "^5.4.0",
"uuid": "^9.0.0",
"yargs": "^17.7.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
],
"watchPathIgnorePatterns": [
"fixtures/*",
"__file_snapshots__"
]
}
}