UNPKG

937 BJSONView Raw
1{
2 "name": "es-iife",
3 "version": "0.2.2",
4 "description": "Transform ES module into a simple IIFE.",
5 "keywords": [
6 "es",
7 "import",
8 "export",
9 "transform",
10 "iife"
11 ],
12 "main": "index.js",
13 "files": [
14 "lib"
15 ],
16 "scripts": {
17 "test": "eslint **/*.js --cache && c8 --reporter=html mocha",
18 "preversion": "npm test",
19 "postversion": "git push --follow-tags && npm publish"
20 },
21 "repository": "eight04/es-iife",
22 "author": "eight04 <eight04@gmail.com>",
23 "license": "MIT",
24 "devDependencies": {
25 "acorn": "^8.0.4",
26 "c8": "^7.3.5",
27 "eslint": "^7.12.1",
28 "mocha": "^8.2.0",
29 "sinon": "^9.2.1"
30 },
31 "dependencies": {
32 "@rollup/pluginutils": "^4.1.0",
33 "camelcase": "^6.2.0",
34 "estree-walker": "^2.0.1",
35 "is-reference": "^1.2.1",
36 "magic-string": "^0.25.7"
37 },
38 "eslintIgnore": [
39 "test/cases",
40 "coverage"
41 ]
42}