-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
67 lines (67 loc) · 1.66 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
{
"name": "babel-plugin-macros",
"version": "0.0.0-semantically-released",
"description": "Allows you to build compile-time libraries",
"main": "src/index.js",
"scripts": {
"lint": "kcd-scripts lint",
"setup": "npm install && npm run validate -s",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "kcd-scripts validate"
},
"files": [
"src/index.js"
],
"keywords": [
"babel-plugin",
"macros",
"macro",
"babel-macro",
"babel-plugin-macro",
"babel-macros",
"babel-plugin-macros"
],
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com)",
"license": "MIT",
"dependencies": {
"cosmiconfig": "^7.0.0",
"resolve": "^1.19.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/parser": "^7.12.7",
"@babel/plugin-transform-modules-commonjs": "^7.16.7",
"@babel/types": "^7.12.7",
"ast-pretty-print": "^2.0.1",
"babel-plugin-tester": "^10.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"cpy": "^8.1.1",
"kcd-scripts": "^7.1.0"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js"
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"babel": {
"plugins": [
"@babel/transform-modules-commonjs"
]
},
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/babel-plugin-macros"
},
"bugs": {
"url": "https://github.com/kentcdodds/babel-plugin-macros/issues"
},
"homepage": "https://github.com/kentcdodds/babel-plugin-macros#readme",
"engines": {
"node": ">=10",
"npm": ">=6"
}
}