-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "@navikt/npm-to-esm",
"version": "1.5.5",
"bin": {
"npm-to-esm": "./bin/index.js"
},
"main": "index.js",
"files": [
"bin",
"lib",
"CODEOWNERS",
"package.json",
"index.js",
"LICENSE.md",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/navikt/npm-to-esm"
},
"scripts": {
"dev": "nodemon --exec 'npm run build' --ignore './index.esm.js'",
"build": "node ./bin/index.js --packageName react --packageVersion 18.2.0 --includeDependencies --importMap ./lib/importmap/import-map.json --entry cjs/react.production.min.js"
},
"keywords": [],
"author": "NAV",
"license": "MIT",
"devDependencies": {
"nodemon": "2.0.14"
},
"dependencies": {
"@rollup/plugin-commonjs": "22.0.0-4",
"@rollup/plugin-node-resolve": "13.1.2",
"@rollup/plugin-replace": "3.0.1",
"axios": "0.24.0",
"chalk": "4.1.2",
"compressing": "1.5.1",
"make-dir": "3.1.0",
"nanoid": "3.1.30",
"rollup": "2.63.0",
"rollup-plugin-import-map": "2.2.2",
"rollup-plugin-terser": "7.0.2",
"yargs": "17.3.1"
}
}