-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 951 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
34
35
36
37
38
39
40
41
42
43
{
"name": "rollup-plugin-iife",
"version": "0.7.1",
"description": "Convert ES modules into IIFEs.",
"author": "eight04 <[email protected]>",
"license": "MIT",
"keywords": [
"rollup-plugin",
"rollup",
"iife"
],
"scripts": {
"lint": "eslint \"**/*.js\" --cache",
"test": "npm run lint && c8 --reporter=lcov mocha",
"preversion": "npm test",
"postversion": "git push --follow-tags && npm publish"
},
"main": "index.js",
"dependencies": {
"es-iife": "^0.2.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"c8": "^9.1.0",
"endent": "^2.1.0",
"eslint": "^8.56.0",
"mocha": "^10.3.0",
"rollup": "^4.11.0",
"string-looks-like": "^0.1.1",
"tempdir-yaml": "^0.3.0"
},
"peerDependencies": {
"rollup": "^3.2.3||^4.0.0"
},
"repository": "eight04/rollup-plugin-iife",
"eslintIgnore": [
"coverage"
],
"engines": {
"node": ">=8"
},
"files": []
}