forked from kentcdodds/import-all.macro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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": "named-import-all.macro",
"version": "3.0.3",
"description": "A macro for babel-plugin-macros that allows you to get a map with async named imports that match a glob",
"main": "dist/index.js",
"engines": {
"node": "> 4",
"npm": "> 3"
},
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "kcd-scripts validate",
"precommit": "kcd-scripts precommit"
},
"files": [
"dist"
],
"keywords": [
"babel-plugin-macros"
],
"author": "Alex Anokhin <[email protected]> (http://sanohin.js.org/)",
"license": "MIT",
"dependencies": {
"babel-plugin-macros": "^2.0.0",
"glob": "^7.1.2"
},
"devDependencies": {
"ast-pretty-print": "^2.0.1",
"babel-plugin-tester": "^5.0.0",
"kcd-scripts": "^0.32.1",
"prettier": "^1.10.2"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"complexity": [
"error",
12
]
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/sanohin/named-import-all.macro.git"
},
"bugs": {
"url": "https://github.com/sanohin/named-import-all.macro/issues"
},
"homepage": "https://github.com/sanohin/named-import-all.macro#readme"
}