-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·37 lines (37 loc) · 937 Bytes
/
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
{
"name": "parcel-plugin-wrapper",
"version": "0.2.2",
"description": "Parcel plugin that wraps output files with custom text or code.",
"main": "index.js",
"keywords": [
"parcel"
],
"scripts": {
"test": "jest"
},
"repository": "https://github.com/albinotonnina/parcel-plugin-wrapper.git",
"author": "Albino Tonnina <albinotonnina@gmail.com>",
"license": "MIT",
"peerDependencies": {
"parcel-bundler": "^1.11.0"
},
"dependencies": {},
"devDependencies": {
"@parcel/logger": "^1.11.0",
"jest": "^23.1.0",
"parcel-assert-bundle-tree": "^1.0.0",
"parcel-bundler": "^1.11.0"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"./src/tests/"
],
"moduleNameMapper": {
".assetWrapper.js$": "<rootDir>/tests/mockAssetWrapper.js"
}
}
}