diff options
author | Sébastien Determe <sebastien.determe@intl.att.com> | 2019-08-21 13:37:20 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-08-21 13:37:20 +0000 |
commit | b54c22cf12ebf4fda895e2b21d00cfac294447d7 (patch) | |
tree | b7e969732ee1bff6682f8e245ec6566bb12db39b /ui-react/package.json | |
parent | f9e2ceeae29504505f631086e612fad4e1e16979 (diff) | |
parent | 4aedf73ee896f8bac3dce6d728cb40a9519b76d7 (diff) |
Merge "Changes to support npm publish of reactjs components"
Diffstat (limited to 'ui-react/package.json')
-rw-r--r-- | ui-react/package.json | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/ui-react/package.json b/ui-react/package.json index 9c94ccc3..9770d44c 100644 --- a/ui-react/package.json +++ b/ui-react/package.json @@ -1,17 +1,29 @@ { - "name": "clamp-ui", - "version": "0.0.1", - "description": "ONAP Clamp Designer UI", + "name": "onap-clamp-ui", + "version": "4.1.0-SNAPSHOT", + "description": "ONAP Clamp Loop Designer UI", + "author": "ONAP Clamp Team", + "license": "Apache-2.0", + "homepage": "wiki.onap.org", + "publishConfig": { + "registry": "https://nexus3.onap.org/repository/npm.snapshot/" + }, "main": "index.js", "proxy": "http://localhost:8080", "scripts": { "start": "react-scripts start", "build": "react-scripts build", - "test": "react-scripts test --env=jsdom", - "eject": "react-scripts eject" + "test": "react-scripts test --env=jsdom --watchAll=false", + "eject": "react-scripts eject", + "publish": "npm run publish" }, - "author": "ONAP Clamp Team", - "license": "Apache-2.0", + "files": [ + "src/*.js", + "src/*.png", + "src/api", + "src/components", + "src/theme" + ], "dependencies": { "@json-editor/json-editor": "1.4.0-beta.0", "react": "16.8.0", |