forked from CommunityXYZ/community-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.55 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
{
"name": "community-js",
"version": "1.1.55",
"author": {
"name": "Cedrik Boudreau",
"email": "[email protected]",
"website": "https://community.xyz"
},
"description": "Community Javascript wrapper.",
"main": "lib/community.js",
"types": "lib/community.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CommunityXYZ/community-js.git"
},
"scripts": {
"build": "npm run buildnpm && node build.js",
"buildnpm": "tsc",
"watch": "node watch.js",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"test": "jest",
"docs": "rimraf ./docs && typedoc --plugin typedoc-plugin-markdown --disableSources --readme none --excludePrivate --out ./docs ./src",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint && npm run test && npm run format && npm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/jest": "^26.0.23",
"esbuild": "^0.12.14",
"jest": "^27.0.6",
"node-watch": "^0.7.1",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.21.2",
"typedoc-plugin-markdown": "^3.10.2",
"typescript": "^4.3.5"
},
"dependencies": {
"arweave": "^1.10.15",
"axios": "^0.21.1",
"redstone-api": "^0.4.3",
"smartweave": "^0.4.41",
"util": "^0.12.4"
}
}