mirror of
https://github.com/sasjs/adapter.git
synced 2025-12-10 17:04:36 +00:00
67 lines
2.1 KiB
JSON
67 lines
2.1 KiB
JSON
{
|
|
"name": "@sasjs/adapter",
|
|
"description": "JavaScript adapter for SAS",
|
|
"scripts": {
|
|
"build": "rimraf build && rimraf node && mkdir node && cp -r src/* node && webpack && rimraf build/src && rimraf node",
|
|
"package:lib": "npm run build && cp ./package.json build && cd build && npm version \"5.0.0\" && npm pack",
|
|
"publish:lib": "npm run build && cd build && npm publish",
|
|
"lint:fix": "npx prettier --write 'src/**/*.{ts,tsx,js,jsx,html,css,sass,less,json,yml,md,graphql}' && npx prettier --write 'sasjs-tests/src/**/*.{ts,tsx,js,jsx,html,css,sass,less,json,yml,md,graphql}'",
|
|
"lint": "npx prettier --check 'src/**/*.{ts,tsx,js,jsx,html,css,sass,less,json,yml,md,graphql}' && npx prettier --check 'sasjs-tests/src/**/*.{ts,tsx,js,jsx,html,css,sass,less,json,yml,md,graphql}'",
|
|
"test": "jest --silent --coverage",
|
|
"prepublishOnly": "cp -r ./build/* . && rm -rf ./build",
|
|
"postpublish": "git clean -fd",
|
|
"semantic-release": "semantic-release",
|
|
"typedoc": "typedoc"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"release": {
|
|
"plugins": [
|
|
"@semantic-release/npm",
|
|
{
|
|
"pkgRoot": "/build"
|
|
}
|
|
]
|
|
},
|
|
"keywords": [
|
|
"sas",
|
|
"viya",
|
|
"sasjs"
|
|
],
|
|
"author": "Allan Bowe <support@macropeople.com>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://adapter.sasjs.io"
|
|
},
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.22",
|
|
"cp": "^0.2.0",
|
|
"dotenv": "^8.2.0",
|
|
"jest": "^26.6.3",
|
|
"jest-extended": "^0.11.5",
|
|
"path": "^0.12.7",
|
|
"rimraf": "^3.0.2",
|
|
"semantic-release": "^17.4.2",
|
|
"terser-webpack-plugin": "^4.2.3",
|
|
"ts-jest": "^25.5.1",
|
|
"ts-loader": "^9.1.2",
|
|
"tslint": "^6.1.3",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"typedoc": "^0.20.35",
|
|
"typedoc-neo-theme": "^1.1.0",
|
|
"typedoc-plugin-external-module-name": "^4.0.6",
|
|
"typescript": "^3.9.9",
|
|
"webpack": "^5.33.2",
|
|
"webpack-cli": "^4.7.0"
|
|
},
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"@sasjs/utils": "^2.10.2",
|
|
"axios": "^0.21.1",
|
|
"form-data": "^4.0.0",
|
|
"https": "^1.0.0"
|
|
}
|
|
}
|