This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
forked from l3wi/mam.client.js
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
executable file
·50 lines (50 loc) · 1.64 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
{
"name": "@iota/mam",
"version": "0.7.3",
"description": "Masked Authentication Messaging wrapper for Javascript (Browser and Node)",
"main": "lib/mam.client.js",
"typings": "lib/mam.client.d.ts",
"scripts": {
"clean": "rimraf ./lib/mam.client.js ./lib/mam.client.min.js ./lib/mam.web.js ./lib/mam.web.min.js",
"lint": "eslint ./src",
"build-node-dev": "webpack --target node --mode development",
"build-node-prod": "webpack --target node --mode production",
"build-web-dev": "webpack --target web --mode development",
"build-web-prod": "webpack --target web --mode production",
"dist": "run-s clean lint build-node-dev build-node-prod build-web-prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iotaledger/mam.client.js.git"
},
"keywords": [
"IOTA",
"MAM",
"Masked Authentication Messaging"
],
"author": "IOTA Foundation (https://iota.org)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/iotaledger/mam.client.js/issues"
},
"homepage": "https://iota.org",
"engines": {
"node": ">=6"
},
"dependencies": {
"@iota/converter": "^1.0.0-beta.12",
"@iota/core": "^1.0.0-beta.12",
"@iota/curl": "^1.0.0-beta.12"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.6",
"encoding": "^0.1.12",
"eslint": "^5.16.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
}
}