-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
59 lines (59 loc) · 1.43 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
{
"name": "import-all.macro",
"version": "0.0.0-semantically-released",
"description": "A macro for babel-plugin-macros that allows you to import all files that match a glob",
"main": "dist/index.js",
"engines": {
"node": ">=10",
"npm": ">=6"
},
"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",
"validate": "kcd-scripts validate"
},
"files": [
"dist"
],
"keywords": [
"babel-plugin-macros"
],
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.9.2",
"babel-plugin-macros": "^2.8.0",
"glob": "^7.1.6"
},
"devDependencies": {
"ast-pretty-print": "^2.0.1",
"babel-plugin-tester": "^8.0.1",
"kcd-scripts": "^5.6.0",
"prettier": "2.0.1"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"complexity": [
"error",
12
]
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/import-all.macro"
},
"bugs": {
"url": "https://github.com/kentcdodds/import-all.macro/issues"
},
"homepage": "https://github.com/kentcdodds/import-all.macro#readme"
}