-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 938 Bytes
/
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
{
"name": "babel-plugin-relative-import",
"version": "1.0.3",
"description": "Babel Plugin to enable relative imports",
"main": "lib/index.js",
"repository": "mgcrea/babel-plugin-relative-import",
"author": "Olivier Louvignes <[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": {
"find-pkg": "^0.1.1"
},
"devDependencies": {
"babel-cli": "^6.8.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-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.0",
"eslint": "^2.9.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.2"
}
}