forked from hyperweb-io/ts-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "cosmscript",
"version": "0.0.1",
"publishConfig": {
"access": "restricted"
},
"private": true,
"scripts": {
"build": "lerna run prepare --parallel",
"bootstrap": "lerna bootstrap --use-workspaces",
"elint": "DEBUG=eslint:*,eslintrc:* eslint --ignore-path .gitignore .",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --ignore-path .gitignore . --fix",
"pretest": "yarn lint",
"test:watch": "jest --watch",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.8",
"@babel/eslint-parser": "^7.5.4",
"@pyramation/babel-preset-env": "0.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^27.5.1",
"eslint": "8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "27.5.1",
"lerna": "4.0.0",
"prettier": "2.6.2"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/pyramation/cosmwasm-typescript-gen"
},
"dependencies": {
"@jest/transform": "27.5.1"
}
}