forked from jshanson7/babel-plugin-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.63 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.63 KB
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
{
"name": "babel-plugin-resolver",
"version": "0.0.7",
"description": "Resolve modules from any directory.",
"main": "lib/ResolverPlugin.js",
"scripts": {
"test": "npm run clear-cache && npm run lint && node_modules/.bin/mocha test/**/*.test.js",
"lint": "./node_modules/.bin/eslint lib test",
"cover": "npm run istanbul && npm run coveralls",
"istanbul": "node node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"clear-cache": "rm -f ~/.babel.json",
"link-self": "rm -rf node_modules/babel-plugin-resolver && ln -s . node_modules/babel-plugin-resolver"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jshanson7/babel-plugin-resolver.git"
},
"keywords": [
"babel",
"resolve",
"local",
"module",
"source",
"resolveModuleSource",
"NODE_PATH",
"import"
],
"author": "Jeff Hanson",
"license": "MIT",
"bugs": {
"url": "https://github.com/jshanson7/babel-plugin-resolver/issues"
},
"homepage": "https://github.com/jshanson7/babel-plugin-resolver#readme",
"dependencies": {
"babel-resolver": "^0.0.18",
"lodash": "^3.10.1"
},
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-core": "^6.1.18",
"babel-eslint": "^4.1.5",
"babel-plugin-resolver": "file:.",
"babel-preset-es2015": "^6.1.18",
"coveralls": "^2.11.4",
"eslint": "^1.9.0",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-babel": "^2.1.1",
"eslint-plugin-standard": "^1.3.1",
"istanbul": "^0.4.0",
"mocha": "^2.3.3"
}
}