-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "priveos",
"version": "v0.2.5",
"description": "privEOS client",
"main": "dist/node/index.js",
"scripts": {
"build_node": "rm -rf dist/node && babel src --out-dir dist/node",
"build_browser": "webpack --config webpack.browser.js",
"prePublish": "npm run build_node && npm run build_browser",
"test": "jest"
},
"author": "",
"license": "ISC",
"resolutions": {
"lodash": "4.17.13"
},
"dependencies": {
"@babel/runtime": "^7.3.1",
"axios": "^0.19.0",
"eosjs-ecc-priveos": "^4.0.8",
"ipfs-unixfs": "^0.1.16",
"ipld-dag-pb": "^0.15.1",
"loglevel": "^1.6.1",
"secrets.js-grempe": "^1.1.0",
"tweetnacl": "^1.0.0",
"tweetnacl-util": "^0.15.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"babel-jest": "^24.1.0",
"jest": "^24.0.0",
"uuid": "^3.3.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"eosjs": "20",
"node-fetch": "^2.6.0"
}
}