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

26 lines
642 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": {
"build": "npm tests && tsc",
"tests": "mocha -r ts-node/register ./tests/**/*.spec.ts",
"test": "mocha -r ts-node/register"
2023-01-25 17:08:19 -06:00
},
"author": "Stevan Freeborn",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"axios": "^1.2.4"
}
2023-01-25 17:08:19 -06:00
}