2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00
Ghost/ghost/members-api/package.json

53 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "@tryghost/members-api",
"version": "0.0.0",
"private": true,
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test:unit": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura mocha --reporter dot './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"
},
"files": [
"index.js",
"MembersAPI.js",
"lib",
"gateway"
],
"devDependencies": {
"@tryghost/member-attribution": "0.0.0",
"@types/node-jose": "1.1.10",
2023-07-11 15:11:02 +02:00
"c8": "7.14.0",
"jwk-to-pem": "2.0.5",
2022-12-12 14:20:22 +01:00
"mocha": "10.2.0",
2023-07-11 15:11:02 +02:00
"nock": "13.3.1",
"should": "13.2.3",
2023-07-11 15:11:02 +02:00
"sinon": "15.2.0"
},
"dependencies": {
"@tryghost/domain-events": "0.0.0",
"@tryghost/errors": "1.2.24",
2023-04-07 13:14:57 +02:00
"@tryghost/logging": "2.4.4",
"@tryghost/magic-link": "0.0.0",
"@tryghost/member-events": "0.0.0",
"@tryghost/members-payments": "0.0.0",
"@tryghost/nql": "0.11.0",
2023-04-07 13:14:57 +02:00
"@tryghost/tpl": "0.1.24",
2023-07-24 14:43:23 +02:00
"@tryghost/validator": "0.2.4",
"@types/jsonwebtoken": "9.0.2",
"body-parser": "1.20.2",
"bson-objectid": "2.0.4",
2022-10-10 04:33:02 +02:00
"express": "4.18.2",
"got": "11.8.6",
2022-07-21 14:38:42 +02:00
"jsonwebtoken": "8.5.1",
"lodash": "4.17.21",
"moment": "2.29.4",
"node-jose": "2.2.0"
}
}