This repository was archived by the owner on May 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.4 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
{
"name": "rollup-plugin-legacy-bundle",
"version": "0.2.1",
"description": "Rollup plugin to generate legacy bundle for old browsers",
"main": "dist/cjs/index.js",
"module": "dist/es6/index.js",
"typings": "dist/types/index.d.ts",
"keywords": [
"rollup-plugin",
"rollup",
"modern bundle",
"legacy bundle"
],
"scripts": {
"prebuild": "tsc",
"build": "rollup -c",
"lint": "eslint --ext .ts src",
"prerelease": "NODE_ENV=production npm run build",
"release": "npm publish"
},
"author": "Sergii Stotskyi <[email protected]>",
"license": "MIT",
"engines": {
"npm": "^6.0.0"
},
"files": [
"dist"
],
"peerDependencies": {
"rollup": "^1.20.0 || ^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@rollup/plugin-node-resolve": "^7.1.1",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-plugin-import": "^2.20.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.4.0",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix --ext .ts"
]
}
}