2019-05-07 17:36:58 +03:00
|
|
|
{
|
|
|
|
"name": "@tryghost/members-api",
|
2022-07-21 10:15:29 +03:00
|
|
|
"version": "0.0.0",
|
2022-07-21 10:24:02 +03:00
|
|
|
"private": true,
|
2019-05-07 17:36:58 +03:00
|
|
|
"author": "Ghost Foundation",
|
|
|
|
"license": "MIT",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
|
|
|
"dev": "echo \"Implement me!\"",
|
2023-10-05 13:09:39 +03:00
|
|
|
"test:unit": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura -- mocha --reporter dot --reporter dot './test/**/*.test.js'",
|
2022-08-15 16:20:45 +03:00
|
|
|
"test": "yarn test:unit",
|
2023-06-12 17:27:12 +03:00
|
|
|
"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"
|
2019-05-07 17:36:58 +03:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"index.js",
|
2021-07-15 19:54:24 +03:00
|
|
|
"MembersAPI.js",
|
2019-05-07 17:36:58 +03:00
|
|
|
"lib",
|
|
|
|
"gateway"
|
|
|
|
],
|
|
|
|
"devDependencies": {
|
2022-08-31 12:01:34 +03:00
|
|
|
"@tryghost/member-attribution": "0.0.0",
|
2023-11-08 14:14:10 +03:00
|
|
|
"@types/node-jose": "1.1.13",
|
2023-09-01 16:32:29 +03:00
|
|
|
"c8": "8.0.1",
|
2022-05-23 12:59:33 +03:00
|
|
|
"jwk-to-pem": "2.0.5",
|
2022-12-12 16:20:22 +03:00
|
|
|
"mocha": "10.2.0",
|
2023-09-01 16:32:29 +03:00
|
|
|
"nock": "13.3.3",
|
2019-05-07 17:36:58 +03:00
|
|
|
"should": "13.2.3",
|
2023-07-11 16:11:02 +03:00
|
|
|
"sinon": "15.2.0"
|
2019-05-07 17:36:58 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-07-21 17:35:19 +03:00
|
|
|
"@tryghost/domain-events": "0.0.0",
|
2024-05-01 17:51:33 +03:00
|
|
|
"@tryghost/errors": "1.3.2",
|
2024-05-27 16:18:12 +03:00
|
|
|
"@tryghost/logging": "2.4.15",
|
2022-07-21 17:35:19 +03:00
|
|
|
"@tryghost/magic-link": "0.0.0",
|
|
|
|
"@tryghost/member-events": "0.0.0",
|
|
|
|
"@tryghost/members-payments": "0.0.0",
|
2024-05-13 18:35:27 +03:00
|
|
|
"@tryghost/nql": "0.12.3",
|
2024-05-27 16:18:12 +03:00
|
|
|
"@tryghost/tpl": "0.1.30",
|
|
|
|
"@tryghost/validator": "0.2.11",
|
2024-04-30 22:48:58 +03:00
|
|
|
"@types/jsonwebtoken": "9.0.6",
|
2023-02-22 11:57:53 +03:00
|
|
|
"body-parser": "1.20.2",
|
2022-11-23 13:37:03 +03:00
|
|
|
"bson-objectid": "2.0.4",
|
2024-03-27 13:08:42 +03:00
|
|
|
"express": "4.19.2",
|
2023-02-20 18:33:11 +03:00
|
|
|
"got": "11.8.6",
|
2022-07-21 15:38:42 +03:00
|
|
|
"jsonwebtoken": "8.5.1",
|
|
|
|
"lodash": "4.17.21",
|
2022-08-18 12:36:16 +03:00
|
|
|
"moment": "2.29.4",
|
2023-11-15 19:10:28 +03:00
|
|
|
"node-jose": "2.2.0",
|
|
|
|
"uuid": "9.0.1"
|
2019-05-07 17:36:58 +03:00
|
|
|
}
|
|
|
|
}
|