mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +03:00
1d6b8c1875
refs https://github.com/TryGhost/Team/issues/870 - currently, a handful of packages in this repo generate type declarations when building - we're aiming to go more in the direction of better inline jsdoc, and we want to clean up all generated files and use of external types - this commit removes the `typescript` dependency, removes the pretest commands that run the builds, and cleans up anywhere where we configure types
32 lines
711 B
JSON
32 lines
711 B
JSON
{
|
|
"name": "@tryghost/session-service",
|
|
"version": "0.1.24",
|
|
"repository": "https://github.com/TryGhost/Utils/tree/master/packages/session-service",
|
|
"author": "Ghost Foundation",
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "echo \"Implement me!\"",
|
|
"test": "NODE_ENV=testing c8 mocha './test/**/*.test.js'",
|
|
"lint": "eslint . --ext .js --cache",
|
|
"posttest": "yarn lint"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"c8": "7.7.3",
|
|
"express": "4.17.1",
|
|
"mocha": "9.0.0",
|
|
"should": "13.2.3",
|
|
"sinon": "11.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@tryghost/errors": "^0.2.13"
|
|
}
|
|
}
|