Skip to content

Commit

Permalink
chore: Fixing global testing and peer dependencies (accordproject#317)
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Roberts <[email protected]>
  • Loading branch information
mttrbrts authored Mar 24, 2021
1 parent 5c92ecb commit e011e00
Show file tree
Hide file tree
Showing 11 changed files with 100,524 additions and 8,187 deletions.
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

# Logs
logs
*.log
Expand Down
11 changes: 11 additions & 0 deletions HEADER
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
2 changes: 2 additions & 0 deletions HEADER.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## License <a name="license"></a>
Accord Project source code files are made available under the Apache License, Version 2.0 (Apache-2.0), located in the LICENSE file. Accord Project documentation files are made available under the Creative Commons Attribution 4.0 International License (CC-BY-4.0), available at http://creativecommons.org/licenses/by/4.0/.
13,529 changes: 7,223 additions & 6,306 deletions package-lock.json

Large diffs are not rendered by default.

86 changes: 79 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,27 @@
"eslint-plugin-react-hooks": "^4.0.2",
"lerna": "^3.22.1",
"lerna-changelog": "^1.0.1",
"license-check-and-add": "2.3.6",
"moment-mini": "2.22.1",
"semver": "6.2.0"
},
"dependencies": {
"react-dom": "^16.13.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.2",
"slate": "^0.58.4",
"slate-history": "^0.58.4",
"slate-react": "^0.58.4",
"styled-components": "^5.1.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.2"
"styled-components": "^5.1.0"
},
"scripts": {
"storybook": "lerna exec --scope storybook -- npm run build-storybook",
"postinstall": "npm run pkgcheck && npm run bootstrap",
"bootstrap": "lerna bootstrap",
"pretest": "npm run doc && npm run licchk",
"test": "echo \"Error: no test specified\" && exit 1",
"test:windows": "lerna exec -- npm run test:windows",
"licchk": "license-check-and-add",
"pretest": "npm run licchk",
"test:e2e": "lerna exec --scope storybook -- npm run ci:start-and-test-storybook",
"test": "npm run test:e2e",
"publish": "./scripts/manualrelease.sh",
"repoclean": "lerna clean",
"pkgcheck": "node ./scripts/pkgcheck.js",
Expand All @@ -59,5 +61,75 @@
"type: chore 🧼": ":soap: Chore",
"type: documentation 📝": ":memo: Documentation"
}
},
"license-check-and-add-config": {
"folder": ".",
"license": "HEADER",
"exact_paths_method": "EXCLUDE",
"exact_paths": [
".git",
".github",
"node_modules",
"packages",
"softhsm",
"build.cfg",
"README.md",
"CONTRIBUTING.md",
"DEVELOPERS.md",
"NOTICES.md",
"CHARTER.md",
"LICENSE",
"HEADER",
"docs/",
"coverage",
".DS_Store"
],
"file_type_method": "EXCLUDE",
"file_types": [
".yml",
".log",
".enc",
".xmind",
".deb",
".vo",
".glob",
".aux",
".v.d",
".ctoj",
".depends",
".annot",
".byte",
".cmi",
".cmo",
".tem",
".txt",
".config",
".coq_modules"
],
"insert_license": false,
"license_formats": {
"js|ergo|cto": {
"prepend": "/*",
"append": " */",
"eachLine": {
"prepend": " * "
}
},
"v|atd|mll|mly": {
"prepend": "*",
"append": " *)",
"eachLine": {
"prepend": " * "
}
},
"gitattributes|cfg|ocp-indent": {
"eachLine": {
"prepend": "# "
}
},
"md": {
"file": "HEADER.md"
}
}
}
}
}
Loading

0 comments on commit e011e00

Please sign in to comment.