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

31 lines
829 B
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.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
2023-01-27 00:04:22 -06:00
"build": "npm run tests && 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",
"test-coverage": "nyc npm run tests"
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",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^15.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"axios": "^1.2.4"
}
2023-01-25 17:08:19 -06:00
}