chore: publishing to npm

This commit is contained in:
Anoop M D 2023-02-08 03:45:27 +05:30
parent 2b384656b6
commit 67643c4c48
8 changed files with 36 additions and 7 deletions

View File

@ -7,6 +7,7 @@
}, },
"files": [ "files": [
"src", "src",
"bin",
"package.json" "package.json"
], ],
"dependencies": { "dependencies": {
@ -16,6 +17,9 @@
"chalk": "^3.0.0", "chalk": "^3.0.0",
"fs-extra": "^10.1.0", "fs-extra": "^10.1.0",
"inquirer": "^9.1.4", "inquirer": "^9.1.4",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
"qs": "^6.11.0",
"yargs": "^17.6.2" "yargs": "^17.6.2"
} }
} }

View File

@ -0,0 +1,8 @@
# bruno-cli
Bru CLI
### Publish to Npm Registry
```bash
npm publish --access=public
```

View File

@ -16,13 +16,9 @@
"@usebruno/js": "0.1.0", "@usebruno/js": "0.1.0",
"@usebruno/lang": "0.1.0", "@usebruno/lang": "0.1.0",
"@usebruno/schema": "0.1.0", "@usebruno/schema": "0.1.0",
"ajv": "^8.12.0",
"atob": "^2.1.2",
"axios": "^0.26.0", "axios": "^0.26.0",
"btoa": "^1.2.1",
"chai": "^4.3.7", "chai": "^4.3.7",
"chokidar": "^3.5.3", "chokidar": "^3.5.3",
"crypto-js": "^4.1.1",
"electron-is-dev": "^2.0.0", "electron-is-dev": "^2.0.0",
"electron-store": "^8.1.0", "electron-store": "^8.1.0",
"electron-util": "^0.17.2", "electron-util": "^0.17.2",
@ -31,7 +27,6 @@
"graphql": "^16.6.0", "graphql": "^16.6.0",
"is-valid-path": "^0.1.1", "is-valid-path": "^0.1.1",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"moment": "^2.29.4",
"mustache": "^4.2.0", "mustache": "^4.2.0",
"nanoid": "3.3.4", "nanoid": "3.3.4",
"qs": "^6.11.0", "qs": "^6.11.0",

View File

@ -10,6 +10,14 @@
"vm2": "^3.9.13" "vm2": "^3.9.13"
}, },
"dependencies": { "dependencies": {
"json-query": "^2.2.2" "atob": "^2.1.2",
"ajv": "^8.12.0",
"btoa": "^1.2.1",
"crypto-js": "^4.1.1",
"json-query": "^2.2.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"nanoid": "3.3.4",
"uuid": "^9.0.0"
} }
} }

View File

@ -0,0 +1,8 @@
# bruno-js
Provides the script, test, vars and assert runtimes.
### Publish to Npm Registry
```bash
npm publish --access=public
```

View File

@ -13,6 +13,7 @@
}, },
"dependencies": { "dependencies": {
"arcsecond": "^5.0.0", "arcsecond": "^5.0.0",
"lodash": "^4.17.21",
"ohm-js": "^16.6.0" "ohm-js": "^16.6.0"
} }
} }

View File

@ -1,3 +1,8 @@
# bruno-lang # bruno-lang
The language utils for working with `.bru` files The language utils for working with `.bru` files
### Publish to Npm Registry
```bash
npm publish --access=public
```

View File

@ -1,6 +1,6 @@
{ {
"name": "@usebruno/schema", "name": "@usebruno/schema",
"version": "0.2.0", "version": "0.3.0",
"main": "src/index.js", "main": "src/index.js",
"files": [ "files": [
"src", "src",