forked from entwicklerstube/babel-plugin-root-import
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
33 lines (33 loc) · 950 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
33
{
"name": "babel-root-slash-import",
"version": "1.1.0",
"description": "Babel Plugin to enable relative root-import",
"author": "Arunoda Susiripala <[email protected]>",
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"build"
],
"repository": "mantrajs/babel-root-slash-import",
"scripts": {
"test": "mocha test/*.spec.js --require config/mocha.js --compilers js:babel-core/register",
"test-watch": "mocha test/*.spec.js --require config/mocha.js --compilers js:babel-core/register --watch",
"lint-js": "eslint plugin",
"compile": "babel -d build/ plugin/"
},
"dependencies": {
"babel": "^6.1.18"
},
"devDependencies": {
"babel-core": "^6.2.1",
"babel-eslint": "^4.0.6",
"babel-cli": "6.x.x",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-1": "^6.1.18",
"chai": "^3.2.0",
"eslint": "^1.1.0",
"mocha": "^2.2.5",
"sinon": "^1.15.4"
}
}