-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.67 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
{
"author": "Buidler Labs Developers <[email protected]>",
"description": "The Rollup plugin aiding to bundle the Hashgraph Venin Js library",
"engines": {
"node": ">=14.8"
},
"exports": {
".": {
"import": "./dist/plugin.mjs"
}
},
"files": [
"dist",
"types"
],
"module": "dist/plugin.mjs",
"name": "@buidlerlabs/rollup-plugin-hashgraph-venin",
"scripts": {
"build:4-publish": "run-p build:esm build:declarations",
"build:bundle-test-rollup": "rollup -c ./test/rollup.config.mjs",
"build:esm": "babel --env-name esm lib --extensions .ts --out-dir dist --source-maps --out-file-extension .mjs",
"build:declarations": "tsc",
"clean": "run-p clean:bundle-test-rollup clean:esm clean:declarations",
"clean:bundle-test-rollup": "rm -fr test/lib.esm",
"clean:declarations": "rm -fr types",
"clean:esm": "rm -fr dist",
"lint": "eslint . --ext ts",
"publish:npm": "run-s clean build:4-publish && npm publish --access public",
"pretest": "run-s build:4-publish build:bundle-test-rollup",
"test": "run-s test:in-browser",
"test:in-browser": "karma start ./test/karma.smoke.conf.cjs"
},
"keywords": [
"VeninJs",
"rollup-plugin",
"Hedera",
"Hashgraph",
"Smart Contracts"
],
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.17.2",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"magic-string": "^0.25.7",
"rollup": "^2.78.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-web-worker-loader": "^1.6.1",
"solc": "0.8.9",
"tslib": "^2.3.1"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"babel-plugin-add-import-extension": "^1.6.0",
"dotenv": "^10.0.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"events": "^3.3.0",
"karma": "^6.3.13",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"puppeteer": "^13.1.3",
"typescript": "^4.5.5"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/buidler-labs/hashgraph-venin-rollup"
},
"type": "module",
"types": "./types/plugin.d.ts",
"version": "0.8.2-beta.0",
"peerDependencies": {
"@buidlerlabs/hashgraph-venin-js": "~0.8.2-beta.0"
}
}