mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-01-28 02:09:09 +01:00
* prepare license-maven-plugin for license migration * added license mapping for tsx files and added some more excludes * Changeover to MIT license * Fix build problems * Delete old remaining licenses * Add more exclude path for license checker * Rename included netbeans license, add exclude .m2/repository/ * Specify .m2 exclude because not only repository/, also wrapper/ must match * Add .cache/ exclude for license check * Modify formatting of license in java classes to comply with convention and IDE * Add IntelliJ documentation for license configuration * Update CHANGELOG.md * Exclude tmp/workspace/ dir for license check * Edit README.md Co-authored-by: Sebastian Sdorra <sebastian.sdorra@cloudogu.com>
34 lines
693 B
JSON
34 lines
693 B
JSON
{
|
|
"name": "@scm-manager/ui-extensions",
|
|
"version": "2.0.0-SNAPSHOT",
|
|
"main": "src/index.ts",
|
|
"license": "MIT",
|
|
"private": false,
|
|
"author": "Sebastian Sdorra <sebastian.sdorra@cloudogu.com>",
|
|
"scripts": {
|
|
"typecheck": "tsc",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"react": "^16.10.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/enzyme": "^3.10.3",
|
|
"@types/jest": "^24.0.19",
|
|
"@types/react": "^16.9.9",
|
|
"typescript": "^3.7.2"
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"@scm-manager/babel-preset"
|
|
]
|
|
},
|
|
"jest": {
|
|
"preset": "@scm-manager/jest-preset"
|
|
},
|
|
"prettier": "@scm-manager/prettier-config",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|