generated from victornpb/template-library-with-rollup
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.48 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "rollup-plugin-baked-env",
"nameFull": "rollup-plugin-baked-env",
"version": "1.0.1",
"description": "Import process.env as a module for baking environment variables inside your bundle at build time.",
"license": "MIT",
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victornpb/rollup-plugin-baked-env.git"
},
"bugs": {
"url": "https://github.com/victornpb/rollup-plugin-baked-env/issues"
},
"homepage": "https://github.com/victornpb/rollup-plugin-baked-env",
"author": "victornpb",
"main": "dist/rollup-plugin-baked-env.cjs.js",
"module": "dist/rollup-plugin-baked-env.mjs",
"exports": {
"import": "./dist/rollup-plugin-baked-env.mjs",
"require": "./dist/rollup-plugin-baked-env.cjs.js"
},
"scripts": {
"start": "npm run watch",
"build": "rollup -c",
"watch": "rollup -c -w",
"prebuild": "rimraf dist",
"test": "npm run lint && npm run build && jest",
"test:watch": "jest -w",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"version": "npm run build",
"release": "np --any-branch"
},
"files": [
"dist"
],
"keywords": [
"rollup",
"rollup-plugin",
"environment variables",
"env",
"bake",
"baked",
"define",
"constants",
"process.env"
],
"sideEffects": false,
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/plugin-transform-object-assign": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^23.0.4",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/jest": "^29.2.4",
"asciitable.js": "^2.0.1",
"eslint": "^8.29.0",
"eslint-plugin-jest": "^27.1.6",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"np": "^7.6.3",
"postcss": "^8.4.20",
"rimraf": "^3.0.2",
"rollup": "^3.7.4",
"rollup-plugin-banner2": "^1.2.2",
"rollup-plugin-postcss": "^4.0.2",
"tiny-dedent": "^1.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"npm run lint:fix",
"git add"
]
},
"peerDependencies": {
"@rollup/pluginutils": "^4.2.1 || ^5.0.2"
}
}