Files
backstage/packages/config/package.json
T
Patrik Oldsberg 8f82d80adf migrate all package scripts
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
2022-02-14 21:50:07 +01:00

48 lines
1.1 KiB
JSON

{
"name": "@backstage/config",
"description": "Config API used by Backstage core, backend, and CLI",
"version": "0.1.13",
"private": false,
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "common-library"
},
"homepage": "https://backstage.io",
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage",
"directory": "packages/config"
},
"keywords": [
"backstage"
],
"license": "Apache-2.0",
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"build": "backstage-cli script build",
"lint": "backstage-cli script lint",
"test": "backstage-cli script test",
"prepack": "backstage-cli script prepack",
"postpack": "backstage-cli script postpack",
"clean": "backstage-cli script clean"
},
"dependencies": {
"@backstage/types": "^0.1.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@backstage/test-utils": "^0.2.4-next.0",
"@types/jest": "^26.0.7",
"@types/node": "^14.14.32"
},
"files": [
"dist"
]
}