-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.34 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
{
"name": "wspackager",
"description": "A small application that handles WCF/WSC packaging for you. Previously known as \"wcfutils\"",
"version": "1.5.1",
"main": "lib/index.js",
"scripts": {
"compile": "babel src/ -d lib/",
"prepublish": "npm run compile",
"test": "npm run compile && jest"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"modules": "commonjs"
}
]
],
"plugins": [
[
"@babel/transform-runtime"
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/padarom/wspackager.git"
},
"author": "Christopher Mühl <[email protected]> (https://padarom.io)",
"license": "MIT",
"bin": {
"wspackager": "lib/bin.js"
},
"bugs": {
"url": "https://github.com/padarom/wspackager/issues"
},
"homepage": "https://github.com/padarom/wspackager#readme",
"dependencies": {
"@babel/runtime": "^7.17.7",
"async": "^3.2.3",
"chalk": "^4.1.2",
"commander": "^9.0.0",
"glob": "^7.1.1",
"lodash.defaults": "^4.2.0",
"lodash.uniqby": "^4.7.0",
"tar": "^6.1.11",
"xml2js": "^0.4.17"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"jest": "^27.5.1"
}
}