forked from iotaledger/identity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.3 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.3 KB
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
63
64
65
{
"name": "@iota/identity-wasm",
"version": "0.4.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 --release --out-dir node && node ./build/node",
"build:web": "wasm-pack build --target web --release --out-dir web && node ./build/web",
"build-dev:nodejs": "wasm-pack build --target nodejs --dev --out-dir node && node ./build/node",
"build-dev:web": "wasm-pack build --target web --dev --out-dir web && node ./build/web",
"build:docs": "node ./build/docs",
"build:examples": "webpack --config ./examples/webpack.config.js --mode=production",
"build": "npm run build:web && npm run build:nodejs && npm run build:docs",
"build-dev": "npm run build-dev:web && npm run build-dev:nodejs && npm run build:docs",
"pretest": "npm run build:nodejs",
"prepublishOnly": "npm run build",
"serve": "webpack serve",
"example:node": "node examples/dist/node.js",
"example:browser": "http-server ./examples/dist/ -c-1 -o ",
"test:node": "jest examples/dist/test.js",
"test:browser": "cypress run --headless",
"test:readme": "txm README.md",
"cypress": "cypress open"
},
"contributors": [
"Jelle Millenaar <jelle.millenaar@iota.org>",
"Devin Turner <devin.turner@iota.org>",
"Tensor <tensordeveloper@gmail.com>",
"Thoralf Müller <thoralf.mue@gmail.com>",
"Sebastian Heusser <huhn.dev@gmail.com>"
],
"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",
"cypress": "^8.3.0",
"http-server": "^0.12.3",
"jest": "^27.0.6",
"jsdoc-to-markdown": "^7.0.0",
"wasm-pack": "^0.9.1",
"webpack": "^5.51.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"node-fetch": "^2.6.0"
}
}