forked from ArweaveTeam/SmartWeave
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.03 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
{
"name": "smartweave",
"version": "0.4.47",
"description": "Simple, scalable smart contracts on the Arweave protocol.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"example": "examples"
},
"scripts": {
"build": "npm run clean && tsc && node build.js",
"format": "prettier --write \"src/**/*.ts\"",
"clean": "rimraf ./lib",
"lint": "tslint -p tsconfig.json",
"lint:fix": "npm run lint --fix",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint && npm run build",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"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": {
"@types/clui": "^0.3.0",
"@types/inquirer": "^7.3.1",
"@weavery/clarity": "^0.1.5",
"arweave": "^1.10.16",
"bignumber.js": "^9.0.1",
"chalk": "^4.1.2",
"clui": "^0.3.6",
"figlet": "^1.5.2",
"inquirer": "^8.1.2",
"json-beautify": "^1.1.1",
"loglevel": "^1.7.0",
"sentencer": "^0.2.1",
"yargs": "^17.1.1"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.7.1",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"arlocal": "^1.0.36",
"cp-cli": "^2.0.0",
"esbuild": "^0.12.22",
"jest": "^27.0.4",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.4"
}
}