forked from hyperledger-archives/aries-framework-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.56 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
{
"name": "@hyperledger/aries-framework-go",
"version": "0.0.1",
"main": "dist/node/aries.js",
"browser": "dist/web/aries.js",
"description": "APIs for building DIDComm and Hyperledger Aries applications.",
"scripts": {
"build:node": "webpack --config ./webpack.config.node.js --mode=production",
"build:web": "webpack --config ./webpack.config.web.js --mode=production",
"build:rest": "webpack --config ./webpack.config.rest.js --mode=production",
"build:assets": "bash scripts/build_assets.sh",
"build": "rm -rf dist/* && cp -p ../../LICENSE . && npm run build:assets && npm run build:node && npm run build:web && npm run build:rest",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/hyperledger/aries-framework-go.git"
},
"keywords": [
"aries",
"ssi",
"agent",
"didcomm",
"hyperledger"
],
"files": [
"dist"
],
"author": "hyperledger/aries",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hyperledger/aries-framework-go/issues"
},
"homepage": "https://github.com/hyperledger/aries-framework-go#readme",
"devDependencies": {
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "^6.4.1",
"file-loader": "6.2.0",
"webpack": "4.46.0",
"webpack-cli": "4.9.1",
"webpack-merge": "5.8.0",
"webpack-shell-plugin": "0.5.0"
},
"engines": {
"node": ">=12.14",
"npm": ">=6.13"
},
"dependencies": {
"axios": "0.23.0",
"minimist": "^1.2.5"
}
}