Files
onspring-api-sdk-javascript/package.json
T

49 lines
1.5 KiB
JSON
Raw Normal View History

2023-01-25 17:08:19 -06:00
{
"name": "onspring-api-sdk",
"version": "1.0.0",
"description": "A javascript SDK for interacting with version 2 of the Onspring API.",
2023-02-03 00:16:38 -06:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
2023-01-25 17:08:19 -06:00
"scripts": {
2023-02-03 00:16:38 -06:00
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
2023-02-03 23:43:26 -06:00
"lint-fix": "eslint --fix --ignore-path .eslintignore --ext .js,.ts . --max-warnings=0",
2023-02-01 23:58:27 -06:00
"format-staged": "pretty-quick --staged",
"format": "pretty-quick",
"build": "npm run tests && npm run format && tsc",
2023-01-26 22:40:13 -06:00
"tests": "mocha -R progress -r ts-node/register ./tests/**/*.spec.ts",
"test": "mocha -r ts-node/register",
2023-02-01 23:39:07 -06:00
"test-coverage": "nyc npm run tests",
"prepare": "husky install"
2023-01-25 17:08:19 -06:00
},
"author": "Stevan Freeborn",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.13",
2023-02-03 00:16:38 -06:00
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"chai": "^4.3.7",
2023-02-03 00:16:38 -06:00
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
2023-02-01 23:30:50 -06:00
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
2023-02-01 23:30:50 -06:00
"prettier": "^2.8.3",
"pretty-quick": "^3.1.3",
"sinon": "^15.0.1",
"ts-node": "^10.9.1",
2023-02-03 00:16:38 -06:00
"typescript": "^4.9.5"
},
"dependencies": {
2023-02-03 16:01:20 -06:00
"axios": "^1.2.4",
"form-data": "^4.0.0"
}
2023-02-01 23:39:07 -06:00
}