This repository has been archived by the owner on Oct 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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
{
"name": "blockweave",
"version": "1.0.18",
"main": "dist/blockweave.js",
"repository": "https://github.com/textury/blockweave.git",
"author": "Cedrik <cedrik.git@tryninja.io>",
"license": "MIT",
"files": [
"dist/**/*"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc && ts-node build.ts",
"format": "prettier --write \"src/**/*.ts\"",
"test": "npm run test:node && npm run test:web",
"test:node": "jest",
"test:web": "jest --env=jsdom",
"lint": "tslint -p tsconfig.json",
"precommit": "npm run format && npm run lint && npm run build",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run precommit",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"dependencies": {
"arconnect": "^0.2.9",
"axios": "^0.21.4",
"bignumber.js": "^9.0.1",
"redstone-smartweave": "^0.3.10-alpha.3",
"util": "^0.12.4"
},
"devDependencies": {
"@swc/cli": "^0.1.49",
"@swc/core": "^1.2.84",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.13",
"browserslist": "^4.17.0",
"esbuild": "^0.12.25",
"esbuild-node-builtins": "^0.1.0",
"jest": "^27.1.0",
"jest-config": "^27.1.0",
"prettier": "^2.3.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",
"typedoc": "^0.21.9",
"typedoc-plugin-markdown": "^3.10.4",
"typescript": "^4.4.2"
}
}