Ghost/ghost/stats-service/package.json

38 lines
1022 B
JSON
Raw Normal View History

{
"name": "@tryghost/stats-service",
"version": "0.0.0",
"repository": "https://github.com/TryGhost/Ghost/tree/main/ghost/stats-service",
"private": true,
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test:unit": "NODE_ENV=testing c8 --all --check-coverage --reporter text --reporter cobertura mocha './test/**/*.test.js'",
"test": "yarn test:unit",
"lint:code": "eslint *.js lib/ --ext .js --cache",
"lint": "yarn lint:code && yarn lint:test",
"lint:test": "eslint -c test/.eslintrc.js test/ --ext .js --cache",
"posttest": "yarn lint"
},
"files": [
"index.js",
"lib"
],
"devDependencies": {
"@types/luxon": "2.4.0",
"@types/mocha": "10.0.1",
"@types/sinon": "10.0.13",
2023-02-17 01:15:50 +03:00
"c8": "7.13.0",
2023-01-23 05:01:58 +03:00
"knex": "2.4.2",
2023-01-05 02:53:50 +03:00
"luxon": "2.5.2",
2022-12-12 16:20:22 +03:00
"mocha": "10.2.0",
"should": "13.2.3",
2023-03-13 05:36:20 +03:00
"sinon": "15.0.2",
2023-03-15 01:49:14 +03:00
"sqlite3": "5.1.6"
},
"dependencies": {
"moment": "2.29.3"
}
}