-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.99 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "babel-plugin-webpack-alias-7",
"version": "0.1.1",
"description": "Babel 7 plugin for webpack aliases",
"repository": "https://github.com/shortminds/babel-plugin-webpack-alias-7",
"main": "lib/index.js",
"scripts": {
"build": "babel src/index.js -d lib",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "eslint --ignore-pattern '*.js.snap' --ext .js ./src/",
"prepublish": "npm run lint && npm test && npm run build",
"test": "jest"
},
"keywords": [
"babel",
"webpack",
"alias"
],
"author": "Nathan Friemel",
"license": "MIT",
"files": [
"lib/index.js"
],
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0",
"lodash.isempty": "^4.4.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.1",
"@babel/plugin-transform-destructuring": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-parameters": "^7.2.0",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/plugin-transform-strict-mode": "^7.2.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.0.0",
"coveralls": "^3.0.2",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.0.0",
"webpack-merge": "^4.2.1"
},
"jest": {
"testURL": "http://localhost",
"modulePathIgnorePatterns": [
"<rootDir>/src/__tests__/__configs__/"
]
}
}