forked from iotaledger/identity.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.61 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": "@iota/identity-wasm",
"version": "0.2.0",
"description": "WASM bindings for IOTA Identity - A Self Sovereign Identity Framework implementing the DID and VC standards from W3C. To be used in Javascript/Typescript",
"repository": {
"type": "git",
"url": "git+https://github.com/iotaledger/identity.rs.git"
},
"directories": {
"example": "examples"
},
"scripts": {
"build:nodejs": "wasm-pack build --target nodejs --out-dir node && node ./build/node",
"build:web": "wasm-pack build --target web --out-dir web && node ./build/web",
"build:docs": "node ./build/docs",
"build": "npm run build:web && npm run build:nodejs && npm run build:docs",
"pretest": "npm run build:nodejs",
"prepublishOnly": "npm run build",
"serve": "webpack serve",
"example:node": "node examples/node.js"
},
"contributors": [
"Jelle Millenaar <[email protected]>",
"Devin Turner <[email protected]>",
"Tensor <[email protected]>",
"Thoralf Müller <[email protected]>",
"Sebastian Heusser <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/iotaledger/identity.rs/issues"
},
"homepage": "https://www.iota.org",
"publishConfig": {
"access": "public"
},
"files": [
"web",
"node"
],
"devDependencies": {
"@wasm-tool/wasm-pack-plugin": "^1.3.3",
"copy-webpack-plugin": "^7.0.0",
"jsdoc-to-markdown": "^7.0.0",
"wasm-pack": "^0.9.1",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"node-fetch": "^2.6.0"
}
}