forked from raviSussol/go-build-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "go-build-webpack-plugin",
"version": "1.2.1",
"main": "lib/index.js",
"description": "",
"engines": {
"node": ">=10"
},
"scripts": {
"clean": "del-cli lib",
"prebuild": "yarn clean",
"build": "babel src --out-dir lib --copy-files --presets=@babel/env",
"dev": "watch 'yarn build' src",
"test": "echo test",
"prepublish": "yarn build",
"release": "np",
"lint": "eslint --cache --format=pretty . --ignore-path .gitignore --ignore-pattern node_modules --ignore-pattern lib --ext .js"
},
"repository": "https://github.com/raviSussol/go-build-webpack-plugin.git",
"author": "Ravi Shrestha <[email protected]>",
"license": "MIT",
"keywords": [
"Golang",
"webpack",
"Javascript"
],
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/node": "^7.13.13",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.14.1",
"babel-eslint": "^10.1.0",
"del-cli": "^3.0.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-formatter-pretty": "^4.0.0",
"jest": "^26.6.3",
"np": "^7.5.0",
"prettier": "^2.2.1",
"watch": "^1.0.2"
},
"dependencies": {
"schema-utils": "^3.0.0"
}
}