generated from pumpncode/template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 1.7 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
{
"name": "@pumpn/parcel-optimizer-prepend",
"version": "0.4.0",
"description": "parcel optimizer to prepend text to the bundle file",
"keywords": [
"parcel",
"pumpn code",
"prepend",
"parcel-optimizer"
],
"homepage": "https://github.com/pumpncode/parcel-optimizer-prepend#readme",
"bugs": {
"url": "https://github.com/pumpncode/parcel-optimizer-prepend/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Nano Miratus",
"email": "[email protected]",
"url": "https://pumpn.net/"
},
"contributors": [
{
"name": "Nano Miratus",
"email": "[email protected]",
"url": "https://pumpn.net/",
"github": "https://github.com/nnmrts",
"twitter": "https://twitter.com/nnmrts"
}
],
"funding": [
{
"type": "individual",
"url": "https://paypal.me/nnmrts"
},
{
"type": "patreon",
"url": "https://www.patreon.com/nnmrts"
}
],
"main": "./index.cjs",
"type": "module",
"exports": {
"import": "./index.cjs",
"require": "./index.cjs"
},
"directories": {
"bin": "./bin",
"doc": "./docs",
"example": "./examples",
"test": "./tests"
},
"repository": "pumpncode/parcel-optimizer-prepend",
"scripts": {
"release": "np",
"test": "echo \"no tests yet :(\""
},
"config": {
"port": "9000"
},
"devDependencies": {
"@pumpn/babel-preset": "^3.2.1",
"@pumpn/eslint-config": "^10.3.1",
"@pumpn/np-config": "^2.3.1",
"ava": "^3.15.0",
"documentation": "^13.1.1"
},
"engines": {
"node": ">=15.0.0",
"npm": ">=7.0.0",
"parcel": ">=2.0.0-nightly"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"parcel": "^2.0.0-nightly.620"
},
"dependencies": {
"@parcel/plugin": "^2.0.0-nightly.622"
}
}