-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "import-file",
"version": "1.3.0",
"description": "import the closest file as a node module with loader",
"scripts": {
"start": "npm test -- -w",
"test": "mocha --require=babel-register test",
"prebuild": "rimraf lib",
"build": "babel src -d lib",
"preversion": "npm test && npm run build"
},
"main": "lib/index.js",
"repository": "https://github.com/Cap32/import-file.git",
"author": "Cap32 <webb.png@gmail.com>",
"keywords": [
"import",
"require",
"interpret",
"cli",
"walk",
"config",
"resolve"
],
"license": "MIT",
"dependencies": {
"find-up": "^2.1.0",
"interpret": "^1.1.0",
"rechoir": "^0.6.2",
"require-reload": "^0.2.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"babel-register-cli": "^3.0.0",
"cross-env": "^3.1.3",
"eslint": "^3.12.2",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"json5": "^0.5.1",
"mocha": "^3.2.0",
"require-yaml": "^0.0.1",
"rimraf": "^2.5.4"
}
}