-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 878 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 878 Bytes
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
{
"name": "@terran-one/cw-check",
"version": "1.0.0",
"description": "cw-check verifies if the Wasm binary is a proper smart contract that's ready to be uploaded to the blockchain.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/Terran-One/cw-check",
"author": "Terran One LLC",
"license": "MIT",
"private": false,
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"commander": "^9.4.1",
"jest": "^29.3.1",
"ts-results": "^3.3.0",
"tslib": "^2.4.1"
},
"scripts": {
"test": "jest --verbose --coverage",
"build": "tsc --module commonjs",
"check": "ts-node src/index.ts",
"prepublishOnly": "yarn build"
}
}