Merge pull request #60 from confio/housekeeping

Do some housekeeping
This commit is contained in:
Ethan Frey 2020-02-06 17:29:51 +01:00 committed by GitHub
commit 5046963b17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 25 additions and 34 deletions

View File

@ -3,3 +3,10 @@
[![npm version](https://img.shields.io/npm/v/@cosmwasm/bcp.svg)](https://www.npmjs.com/package/@cosmwasm/bcp)
A [BCP](https://github.com/iov-one/iov-core/tree/master/packages/iov-bcp) implementation for CosmWasm.
## License
This package is part of the cosmwasm-js repository, licensed under the Apache
License 2.0 (see
[NOTICE](https://github.com/confio/cosmwasm-js/blob/master/NOTICE) and
[LICENSE](https://github.com/confio/cosmwasm-js/blob/master/LICENSE)).

View File

@ -1,7 +1,7 @@
#!/usr/bin/env node
require("source-map-support").install();
const defaultSpecReporterConfig = require("./jasmine-spec-reporter.config.json");
const defaultSpecReporterConfig = require("../../jasmine-spec-reporter.config.json");
// setup Jasmine
const Jasmine = require("jasmine");

View File

@ -128,3 +128,10 @@ above, make sure to adjust the URL as necessary.
```
curl http://localhost:8000/status
```
## License
This package is part of the cosmwasm-js repository, licensed under the Apache
License 2.0 (see
[NOTICE](https://github.com/confio/cosmwasm-js/blob/master/NOTICE) and
[LICENSE](https://github.com/confio/cosmwasm-js/blob/master/LICENSE)).

View File

@ -1,12 +0,0 @@
{
"suite": {
"displayNumber": true
},
"spec": {
"displayDuration": true
},
"summary": {
"displayPending": false,
"displayStacktrace": true
}
}

View File

@ -1,7 +1,7 @@
#!/usr/bin/env node
require("source-map-support").install();
const defaultSpecReporterConfig = require("./jasmine-spec-reporter.config.json");
const defaultSpecReporterConfig = require("../../jasmine-spec-reporter.config.json");
// setup Jasmine
const Jasmine = require("jasmine");

View File

@ -3,3 +3,10 @@
[![npm version](https://img.shields.io/npm/v/@cosmwasm/sdk.svg)](https://www.npmjs.com/package/@cosmwasm/sdk)
An SDK to build CosmWasm clients.
## License
This package is part of the cosmwasm-js repository, licensed under the Apache
License 2.0 (see
[NOTICE](https://github.com/confio/cosmwasm-js/blob/master/NOTICE) and
[LICENSE](https://github.com/confio/cosmwasm-js/blob/master/LICENSE)).

View File

@ -1,12 +0,0 @@
{
"suite": {
"displayNumber": true
},
"spec": {
"displayDuration": true
},
"summary": {
"displayPending": false,
"displayStacktrace": true
}
}

View File

@ -1,7 +1,7 @@
#!/usr/bin/env node
require("source-map-support").install();
const defaultSpecReporterConfig = require("./jasmine-spec-reporter.config.json");
const defaultSpecReporterConfig = require("../../jasmine-spec-reporter.config.json");
// setup Jasmine
const Jasmine = require("jasmine");

View File

@ -2,7 +2,6 @@
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"declarationDir": "build/types",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"module": "commonjs",
@ -13,17 +12,12 @@
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"outDir": "build",
"pretty": true,
"removeComments": false,
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"target": "es6",
"lib": ["es6"],
"typeRoots": [
"./custom_types",
"./node_modules/@types"
]
"lib": ["es6"]
}
}