-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 1.76 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": "babel-test",
"version": "0.2.4",
"description": "An opinionated library to make testing Babel plugins easier",
"keywords": [
"babel",
"jest",
"test"
],
"main": "src/index.js",
"types": "index.d.ts",
"files": [
"src/",
"index.d.ts"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/satya164/babel-test.git"
},
"author": "Satyajit Sahoo <satyajit.happy@gmail.com> (https://github.com/satya164/)",
"scripts": {
"lint": "eslint .",
"test": "jest",
"typescript": "tsc",
"release": "release-it"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@release-it/conventional-changelog": "^2.0.0",
"@types/babel__core": "^7.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"babel-core": "^6.26.3",
"codecov": "^3.8.0",
"eslint": "^7.12.1",
"eslint-config-satya164": "^3.1.8",
"husky": "^4.3.0",
"jest": "^26.6.1",
"jest-file-snapshot": "^0.3.8",
"prettier": "^2.1.2",
"release-it": "^14.2.0",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.+(js|ts|tsx)"
],
"watchPathIgnorePatterns": [
"__fixtures__\\/[^/]+\\/(output|error)\\.js"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"dependencies": {
"chalk": "^4.1.0",
"error-stack-parser": "^2.0.6",
"escape-string-regexp": "^4.0.0",
"strip-ansi": "^6.0.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn typescript && yarn test"
}
}
}