-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 986 Bytes
/
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
{
"name": "@alien-worlds/aw-contract-msig-worlds",
"version": "0.0.9",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"repository": "https://github.com/Alien-Worlds/aw-contract-msig-worlds.git",
"author": "Radoslaw Kamysz",
"license": "MIT",
"scripts": {
"test:unit": "jest --config=jest.config.unit.js",
"clean": "rm -rf ./build",
"build": "./scripts/patch.sh && yarn clean && tsc -b",
"prepublish": "yarn clean && tsc --project tsconfig.build.json"
},
"dependencies": {
"@alien-worlds/aw-antelope": "^0.0.45"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.4.5",
"prettier": "^2.7.1",
"ts-jest": "^27.1.3",
"typescript": "^4.8.2"
}
}