-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "import-directory",
"version": "1.0.6",
"private": false,
"description": "Support use import instead of export for require-directory",
"main": "build/index.js",
"author": {
"name": "Sze Ka Wai Raymond",
"email": "[email protected]"
},
"scripts": {
"build": "node node_modules/grunt-cli/bin/grunt",
"test": "node node_modules/lab/bin/lab test/index.js -c -T 'test/transform.js' -I '__core-js_shared__'"
},
"repository": {
"type": "git",
"url": "https://github.com/raymondsze/import-directory.git"
},
"bugs": {
"url": "https://github.com/raymondsze/import-directory.git"
},
"keywords": [
"require-directory",
"require",
"directory",
"import",
"export",
"default",
"es7"
],
"license": "MIT",
"devDependencies": {
"babel": "^6.3.26",
"babel-core": "^6.3.26",
"babel-eslint": "^4.1.6",
"babel-plugin-transform-async-to-module-method": "^6.3.13",
"babel-preset-es2015-node5": "^1.1.1",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.3.13",
"code": "^2.1.0",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.13.1",
"grunt": "^0.4.5",
"grunt-babel": "^6.0.0",
"grunt-cli": "^0.1.13",
"lab": "^8.0.2",
"load-grunt-tasks": "^3.4.0",
"require-directory": "^2.1.1"
},
"peerDependencies": {
"require-directory": ">=2.1.1"
},
"dependencies": {
"lodash": "^4.0.0"
}
}