forked from ArweaveTeam/SmartWeave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.65 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
{
"name": "smartweave",
"version": "0.3.6",
"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": {
"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": {
"@weavery/clarity": "^0.1.1",
"arweave": "^1.9.1",
"bignumber.js": "^9.0.0",
"loglevel": "^1.7.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/node": "^14.6.3",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"cp-cli": "^2.0.0",
"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-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}