-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "virtual-es-module",
"version": "0.0.16",
"description": "es module polyfill",
"main": "index.js",
"types": "dist/src/index.d.ts",
"module": "dist/virtual-esm.esm-bundler.js",
"scripts": {
"build": "rollup --config",
"test": "karma start test/karma.config.js",
"dev": "rollup --config -w | http-server ./",
"format": "prettier --write --parser typescript \"(src|test|byBabel)/**/*.(js|ts?(x))\""
},
"license": "MIT",
"author": "imtaotao",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"es module",
"esModule",
"module"
],
"dependencies": {
"acorn": "^8.7.0",
"acorn-walk": "^8.2.0",
"escodegen": "^2.0.0",
"source-map": "0.6.1"
},
"devDependencies": {
"@babel/generator": "^7.16.5",
"@babel/parser": "^7.16.6",
"@babel/traverse": "^7.16.5",
"@babel/types": "^7.16.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-replace": "^3.0.0",
"@types/estree": "^0.0.50",
"karma": "^6.3.9",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.8",
"prettier": "^2.5.1",
"rollup": "^2.62.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-typescript2": "^0.31.1",
"typescript": "^4.5.5"
}
}