forked from ArweaveTeam/SmartWeave
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.32 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.32 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
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
95
96
97
98
99
100
{
"name": "smartweave",
"version": "0.3.5",
"description": "Uses lazy-evaluation to move the burden of contract execution from network nodes to smart contract users.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"example": "examples"
},
"scripts": {
"deploy:dev": "node -r ts-node/register -r @babel/register bin/deploy.js",
"deploy:prod": "NODE_ENV=production yarn deploy:dev",
"test:contracts": "mocha -r ts-node/register -r @babel/register -t 20000 test/",
"test:localRun": "DEBUG=localRun nodemon -e js,ts -r esm -r ts-node/register test/remote/execLocalRun.js",
"postTransactions": "node -r esm -r ts-node/register test/remote/postTx.js",
"testRemoteState": "node -r esm -r ts-node/register test/remote/testRemoteState.js",
"postTx": "node -r esm -r ts-node/register test/remote/executeTx.js",
"build:contracts": "rollup --config ./rollup.config.js && node contracts/bin/trimBundle.js",
"build": "tsc",
"prepare": "npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"clean": "rimraf ./lib",
"lint": "eslint --ext .ts,.js src/ examples/",
"lint:fix": "npm run lint -- --fix"
},
"files": [
"lib/**/*"
],
"bin": {
"smartweave-cli": "lib/bin/smartweave-cli.js",
"smartweave": "lib/bin/smartweave.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArweaveTeam/SmartWeave.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArweaveTeam/SmartWeave/issues"
},
"homepage": "https://github.com/ArweaveTeam/SmartWeave#readme",
"dependencies": {
"arweave": "^1.7.1",
"base64url": "^3.0.1",
"bignumber.js": "^9.0.0",
"debug": "^4.1.1",
"dotenv-flow": "^3.2.0",
"ipfs": "^0.48.1",
"loglevel": "^1.7.0",
"promises-tho": "^1.1.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"3id-resolver": "^1.0.1",
"3id-test-helper": "^1.0.2",
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.10.4",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-deno": "^0.9.2",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-simple-bin": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@pika/types": "^0.9.2",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@types/node": "^14.6.3",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-jest": "^26.1.0",
"chai": "^4.2.0",
"cp-cli": "^2.0.0",
"did-jwt": "^4.4.0",
"did-resolver": "^2.0.1",
"eslint": "6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"esm": "^3.2.25",
"jest": "^26.1.0",
"mocha": "^8.0.1",
"nodemon": "^2.0.4",
"outpost-protocol": "^1.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.18.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"ts-node": "^9.0.0",
"typescript": "^3.9.5"
}
}