@redhat-cloud-services/frontend-components-testing 0.0.1 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +4 -10
package/README.md CHANGED
@@ -8,12 +8,12 @@ This package exports utilities to use in tests.
8
8
  ## Installation
9
9
  With NPM
10
10
  ```bash
11
- npm i -S @redhat-cloud-services/frontend-components-testing
11
+ npm i --save-dev @redhat-cloud-services/frontend-components-testing
12
12
  ```
13
13
 
14
14
  With yarn
15
15
  ```bash
16
- yarn add @redhat-cloud-services/frontend-components-testing
16
+ yarn add --dev @redhat-cloud-services/frontend-components-testing
17
17
  ```
18
18
 
19
19
  ## Documentation Links
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redhat-cloud-services/frontend-components-testing",
3
- "version": "0.0.1",
3
+ "version": "0.1.0",
4
4
  "description": "Testing utilities for RedHat Cloud Services project.",
5
5
  "main": "index.js",
6
6
  "module": "esm/index.js",
@@ -12,8 +12,8 @@
12
12
  "scripts": {
13
13
  "build": "npm run build:js && npm run build:esm && npm run build:packages",
14
14
  "build:packages": "node ../../scripts/build-packages.js --forceTypes",
15
- "build:esm": "npx tsc --module es2015 --target es5",
16
- "build:js": "npx tsc -p tsconfig.cjs.json"
15
+ "build:esm": "tsc --module es2015 --target es5",
16
+ "build:js": "tsc -p tsconfig.cjs.json"
17
17
  },
18
18
  "repository": {
19
19
  "type": "git",
@@ -24,11 +24,5 @@
24
24
  "bugs": {
25
25
  "url": "https://github.com/RedHatInsights/frontend-components/issues"
26
26
  },
27
- "homepage": "https://github.com/RedHatInsights/frontend-components/tree/master/packages/testing#readme",
28
- "peerDependencies": {
29
- },
30
- "dependencies": {
31
- },
32
- "devDependencies": {
33
- }
27
+ "homepage": "https://github.com/RedHatInsights/frontend-components/tree/master/packages/testing#readme"
34
28
  }