forked from mantrajs/babel-root-slash-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "@share911/babel-plugin-root-slash-import",
"version": "1.2.0",
"description": "Babel Plugin to enable relative root-import",
"author": "Arunoda Susiripala <arunoda@kadira.io>",
"contributors": [
{
"name": "Adrian Lanning",
"email": "alanning@gmail.com"
}
],
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"build"
],
"repository": "https://github.com/Share911/babel-plugin-root-slash-import",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "npx mocha test/*.spec.js --require @babel/register --require config/mocha.js",
"test-watch": "npx mocha test/*.spec.js --require @babel/register --require config/mocha.js --watch",
"lint-js": "npx standard plugin",
"prepare": "npx babel -d build/ plugin/",
"compile": "npx babel -d build/ plugin/"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"babel-eslint": "^10.0.1",
"chai": "^3.2.0",
"eslint": "^5.16.0",
"mocha": "^3.1.0",
"sinon": "^7.3.2",
"standard": "^12.0.1"
},
"standard": {
"parser": "babel-eslint"
}
}