-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
71 lines (71 loc) · 1.81 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
{
"name": "babel-plugin-codegen",
"version": "0.0.0-semantically-released",
"description": "Generate code at build-time",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"babel-plugin-macros",
"babel-plugin",
"babel",
"code generation"
],
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
"license": "MIT",
"engines": {
"node": ">=10",
"npm": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/babel-plugin-codegen"
},
"bugs": {
"url": "https://github.com/kentcdodds/babel-plugin-codegen/issues"
},
"homepage": "https://github.com/kentcdodds/babel-plugin-codegen#readme",
"files": [
"dist",
"macro.js",
"macro.d.ts"
],
"scripts": {
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"setup": "npm install && npm run validate -s",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"typecheck": "kcd-scripts typecheck",
"validate": "kcd-scripts validate"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"babel-plugin-macros": "^3.0.1",
"require-from-string": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@types/babel-plugin-macros": "^2.8.4",
"@types/jest": "^26.0.15",
"@types/require-from-string": "^1.2.0",
"ast-pretty-print": "^2.0.1",
"babel-plugin-tester": "^10.0.0",
"kcd-scripts": "^7.2.0",
"strip-ansi": "^6.0.0",
"type-fest": "^0.20.2",
"typescript": "^4.1.3"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"@typescript-eslint/sort-type-union-intersection-members": "off"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"/macro.d.ts",
"fixtures"
]
}