forked from mgcrea/babel-plugin-relative-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.1 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
{
"name": "babel-plugin-reflective-import",
"version": "1.0.0",
"description": "Babel Plugin to enable reflactives imports",
"main": "lib/index.js",
"repository": "LucasBadico/babel-plugin-reflective-import",
"author": "Lucas Badico <[email protected]>",
"license": "MIT",
"scripts": {
"compile": "rimraf lib/*; babel src/ -d lib/ -s",
"test": "mocha --compilers js:babel-core/register",
"test:watch": "npm run test -- --watch",
"lint": "eslint src/ test/",
"prepublish": "npm run compile"
},
"dependencies": {
"babel": "^6.23.0",
"find-pkg": "^0.1.1",
"global": "^4.3.2",
"ramda": "^0.25.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-1": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^2.9.0",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.2"
}
}