UNPKG

938 BJSONView Raw
1{
2 "name": "es-iife",
3 "version": "0.1.0",
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 && nyc --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": "^5.5.3",
26 "eslint": "^5.4.0",
27 "mocha": "^5.1.1",
28 "nyc": "^12.0.2",
29 "sinon": "^6.1.5"
30 },
31 "dependencies": {
32 "camelcase": "^5.0.0",
33 "estree-walker": "^0.5.1",
34 "is-reference": "^1.1.0",
35 "magic-string": "^0.25.0",
36 "rollup-pluginutils": "^2.0.1"
37 },
38 "eslintIgnore": [
39 "test/cases",
40 "coverage"
41 ]
42}