-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.32 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
{
"name": "parcel-plugin-custom-dist-structure",
"version": "1.1.9",
"description": "Parcel plugin that allows you to specify a custom dist structure.",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage"
},
"jest": {
"collectCoverageFrom": [
"./lib/**/*.js"
]
},
"customDistStructure": {
"config": {
".js": "js",
".css": "css",
".map": "maps",
"images": [
".jpg",
".svg"
]
},
"options": {
"development": true
}
},
"files": [
"lib/*"
],
"keywords": [
"parcel",
"plugin",
"assets",
"structure",
"dist"
],
"author": "Vladimir Mikulic",
"homepage": "https://github.com/VladimirMikulic/parcel-plugin-custom-dist-structure#readme",
"repository": {
"type": "git",
"url": "https://github.com/VladimirMikulic/parcel-plugin-custom-dist-structure.git"
},
"license": "MIT",
"dependencies": {
"dependency-graph": "^0.9.0",
"glob": "^7.1.6",
"move-file": "^1.2.0",
"regex-escape": "^3.4.9",
"replace-in-file": "^5.0.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.1.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-nuke-dist": "^1.0.1"
}
}