-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
94 lines (94 loc) · 3.02 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@tangle-js/anchors",
"version": "0.9.3",
"description": "Anchoring messages to the Tangle. Powered by IOTA Streams",
"type": "module",
"scripts": {
"build-clean": "rimraf ./es/* ./typings/*",
"dist-clean": "rimraf ./dist/*",
"build-compile": "tsc",
"build-watch": "tsc --watch",
"build-lint": "eslint src --ext .ts",
"build": "npm-run-all build-clean build-compile build-lint",
"test-lint": "eslint test --ext .ts",
"test-run": "jest --testTimeout=120000 --verbose --coverage=false",
"test": "run-s -c test-lint test-run",
"package-esm": "esm-modules ./es ./dist/esm",
"package-umd": "rollup --config rollup.config.js",
"package": "run-s dist-clean package-umd package-esm package-web",
"package-web": "webpack --mode=production",
"dist": "run-s build test package"
},
"repository": {
"type": "git",
"url": "https://github.com/iotaledger/tangle.js.git",
"directory": "libs/anchors"
},
"keywords": [
"iota",
"chrysalis",
"streams",
"anchor",
"channels"
],
"engines": {
"node": ">=16",
"npm": ">=7"
},
"author": "Jose M. Cantera",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/iotaledger/tangle.js.git/issues"
},
"homepage": "https://github.com/iotaledger/tangle.js.git/anchors/README.md",
"dependencies": {
"@iota/iota.js": "^1.6.3",
"@tangle.js/streams-wasm": "1.2.1-beta1",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"node-fetch": "^2.6.1",
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"rollup-plugin-copy": "^3.4.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.31",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.13.0",
"copy-webpack-plugin": "^7.0.0",
"eslint": "^8.15.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^37.9.7",
"eslint-plugin-unicorn": "^41.0.0",
"jest": "^28.1.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.50.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.2",
"ts-loader": "^9.3.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"buffer": "^6.0.3",
"@tangle-js/esm-modules": "0.0.1"
},
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"typings"
],
"typings": "typings/index.d.ts"
}