-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.38 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.38 KB
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
{
"name": "rollup-plugin-entry-code-injector",
"version": "1.0.0",
"description": "A simple rollup plugin that can inject code in the entry files. Can be used for adding polyfills to the bundle in a legacy build.",
"main": "commonjs/index.js",
"jsnext:main": "index.mjs",
"scripts": {
"test": "jest --coverage",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmirca/rollup-plugin-entry-code-injector.git"
},
"keywords": [
"rollup-plugin"
],
"author": "mmirca",
"license": "ISC",
"bugs": {
"url": "https://github.com/mmirca/rollup-plugin-entry-code-injector/issues"
},
"homepage": "https://github.com/mmirca/rollup-plugin-entry-code-injector#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-jest": "^25.1.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"rollup": "^1.31.1"
},
"husky": {
"hooks": {
"pre-commit": "node utils/pre-commit.js"
}
},
"jest": {
"testMatch": [
"**/__tests__/**/*.?(m)js?(x)",
"**/?(*.)(spec|test).?(m)js?(x)"
],
"moduleFileExtensions": [ "js", "mjs" ],
"transform": {
"^.+\\.m?js$": "babel-jest"
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}