autocredit-js
Version:
A nice greeter
44 lines • 1.19 kB
JSON
{
"name": "autocredit-js",
"version": "1.0.0",
"description": "A nice greeter",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/suleodu/autocredit-js.git"
},
"keywords": [
"payment",
"bank-transfer"
],
"author": "Adedayo Sule-Odu <suleodu.adedayo@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/suleodu/autocredit-js/issues"
},
"homepage": "https://github.com/suleodu/autocredit-js#readme",
"devDependencies": {
"@types/jest": "^26.0.13",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.2"
},
"files": [
"lib /**/*"
]
}