-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.36 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
{
"name": "aug",
"version": "0.0.1-alpha2",
"description": "",
"repository": "ConjureLabs/aug",
"main": "index.js",
"scripts": {
"dev": "webpack -w",
"link": "npm run build && cd link && npm link",
"pack": "rm -rf pkg && npm run build && pkg dist/aug.js -c package.json -o packed/aug --options no-warnings",
"build": "webpack"
},
"license": "MIT",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"pkg": {
"scripts": [
"dist/*.js"
],
"targets": [
"node8-alpine-x64",
"node8-linux-x64",
"node8-macos-x64",
"node8-win-x64"
]
},
"dependencies": {
"@babel/core": "7.20.7",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/preset-env": "7.1.0",
"@babel/runtime": "7.1.2",
"@conjurelabs/utils": "^0.1.0",
"acorn": "6.4.1",
"babel-eslint": "10.0.1",
"babel-loader": "8.3.0",
"chalk": "2.4.1",
"copy-webpack-plugin": "11.0.0",
"cryptiles": "^4.1.3",
"epipebomb": "1.0.0",
"ignore": "5.0.2",
"lodash": ">=4.17.13",
"minimist": "1.2.6",
"mixin-deep": "^2.0.1",
"pkg": "5.8.1",
"set-value": "^4.0.1",
"webpack": "5.76.0",
"webpack-node-externals": "1.7.2"
},
"devDependencies": {
"webpack-cli": "5.0.1"
}
}