-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 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
47
{
"name": "validate-syntax-webpack-plugin",
"version": "0.4.0",
"description": "A Webpack plugin to validate the syntax in your bundles",
"repository": "https://github.com/wesm87/validate-syntax-webpack-plugin.git",
"author": "Wes Moberly <[email protected]>",
"license": "MIT",
"engines": {
"node": ">= 8.0.0"
},
"main": "lib/index.js",
"files": [
"lib/**/*.js"
],
"scripts": {
"check-types": "tsc",
"build": "rm -rf lib/* && babel src --out-dir 'lib' --extensions '.ts' --ignore 'src/types.ts' --no-comments",
"prepublishOnly": "yarn build",
"postversion": "git push && git push --tags"
},
"dependencies": {
"acorn": "^7.3.1",
"ramda": "^0.27.0",
"source-map": "^0.7.3"
},
"devDependencies": {
"@babel/cli": "^7.10.0",
"@babel/core": "^7.10.0",
"@babel/preset-env": "^7.10.0",
"@babel/preset-typescript": "^7.10.1",
"@types/acorn": "^4.0.5",
"@types/ramda": "^0.27.6",
"@types/webpack": "^4.41.17",
"prettier": "^2.0.5",
"typescript": "^3.9.5",
"webpack": "^4.43.0"
},
"peerDependencies": {
"webpack": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"resolutions": {
"atob": ">=2.1.0",
"kind-of": ">=6.0.3",
"mixin-deep": ">=1.3.2",
"set-value": ">=2.0.1"
}
}