Ghost/ghost/members-csv/package.json

35 lines
771 B
JSON
Raw Normal View History

2020-06-19 09:54:48 +03:00
{
"name": "@tryghost/members-csv",
"version": "1.1.5",
2020-06-19 09:54:48 +03:00
"repository": "https://github.com/TryGhost/Members/tree/master/packages/members-csv",
"author": "Ghost Foundation",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "echo \"Implement me!\"",
"test": "NODE_ENV=testing c8 mocha './test/**/*.test.js'",
2020-06-19 09:54:48 +03:00
"lint": "eslint . --ext .js --cache",
"posttest": "yarn lint"
},
"files": [
"index.js",
"lib"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"c8": "7.8.0",
2021-08-20 16:32:41 +03:00
"mocha": "9.1.0",
2020-06-19 09:54:48 +03:00
"should": "13.2.3",
2021-07-27 15:02:31 +03:00
"sinon": "11.1.2"
2020-06-19 09:54:48 +03:00
},
2020-06-19 10:23:00 +03:00
"dependencies": {
"bluebird": "^3.7.2",
"fs-extra": "^10.0.0",
"lodash": "^4.17.21",
"papaparse": "5.3.1",
"pump": "^3.0.0"
2020-06-19 10:23:00 +03:00
}
2020-06-19 09:54:48 +03:00
}