-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.14 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "babel-plugin-smart-webpack-import",
"version": "2.0.0",
"description": "Smart Webpack Import has the goal to improve the developer experience when working with so-called dynamic `import()` statements.",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"scripts": {
"format": "effective-prettier '**/*.{ts,tsx,js,jsx,md}'",
"lint": "eslint '**/*.{ts,tsx,js,jsx}'",
"prepare": "rimraf lib && preppy",
"test": "jest",
"release": "git push && release-it --ci patch",
"release:minor": "git push && release-it --ci minor",
"release:major": "git push && release-it --ci major"
},
"engines": {
"node": ">=10.0.0",
"yarn": ">=1.0.0",
"npm": ">=6.0.0"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": "eslint"
},
"jest": {
"testEnvironment": "node"
},
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/sebastian-software/babel-plugin-smart-webpack-import/issues"
},
"homepage": "https://github.com/sebastian-software/babel-plugin-smart-webpack-import#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sebastian-software/babel-plugin-smart-webpack-import.git"
},
"keywords": [
"babel",
"plugin",
"webpack",
"import"
],
"author": {
"name": "Sebastian Software",
"email": "[email protected]",
"url": "https://www.sebastian-software.de"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.12.8",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@effective/eslint-config": "^3.9.2",
"@effective/prettier": "^4.2.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"babel-plugin-tester": "^10.0.0",
"babylon-options": "^2.0.1",
"eslint": "^7.14.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.2",
"preppy": "^10.9.1",
"prettier": "^2.2.0",
"release-it": "^14.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.2"
},
"dependencies": {
"app-root-dir": "^1.0.2",
"base-x": "^3.0.8",
"json5": "^2.1.3"
},
"husky": {
"hooks": {}
}
}