mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-11 08:46:16 +00:00
29 lines
547 B
JSON
29 lines
547 B
JSON
{
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"format:": "prettier .",
|
|
"format:fix": "prettier . --write",
|
|
"lint": "eslint --ext .ts src/",
|
|
"lint:fix": "eslint --ext .ts src/",
|
|
"test": "nyc mocha 'test/**/*.spec.ts'"
|
|
},
|
|
"nyc": {
|
|
"extends": "@openstapps/nyc-config"
|
|
},
|
|
"tsup": {
|
|
"entry": [
|
|
"src/index.ts"
|
|
],
|
|
"sourcemap": true,
|
|
"clean": true,
|
|
"format": "esm",
|
|
"outDir": "lib"
|
|
},
|
|
"prettier": "@openstapps/prettier-config",
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"@openstapps"
|
|
]
|
|
}
|
|
}
|