-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 938 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
{
"name": "parcel-namer-custom",
"version": "0.2.0",
"description": "Parcel namer plugin to rename bundles by interpolating a filename template.",
"keywords": [
"parcel",
"parcel-plugin",
"parcel-namer",
"interpolate"
],
"author": "Mark van Seventer <[email protected]> (http://www.vseventer.com)",
"license": "MIT",
"main": "lib/",
"module": "src/",
"scripts": {
"lint": "eslint src/",
"build": "babel src/ -d lib/",
"preversion": "npm run lint && npm run build && git add -A lib/"
},
"dependencies": {
"@parcel/plugin": "^2.0.0-beta.1"
},
"devDependencies": {
"@babel/cli": "^7.12",
"@babel/core": "^7.12",
"@babel/preset-env": "^7.12",
"babel-eslint": "^10.1",
"eslint": "^7.14",
"eslint-config-airbnb-base": "^14.2",
"eslint-plugin-import": "^2.22"
},
"engines": {
"node": ">=10",
"parcel": "^2.0.0-nightly.1 || ^2.0.0-beta.1"
}
}