mirror of
https://github.com/sasjs/adapter.git
synced 2025-12-11 01:14:36 +00:00
82 lines
2.7 KiB
JSON
82 lines
2.7 KiB
JSON
{
|
|
"name": "@sasjs/adapter",
|
|
"description": "JavaScript adapter for SAS",
|
|
"homepage": "https://adapter.sasjs.io",
|
|
"scripts": {
|
|
"build": "rimraf build && rimraf node && mkdir node && copyfiles -u 1 \"./src/**/*\" ./node && webpack && rimraf build/src && rimraf node",
|
|
"package:lib": "npm run build && copyfiles ./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",
|
|
"prepare": "git rev-parse --git-dir && git config core.hooksPath ./.git-hooks && git config core.autocrlf false || true",
|
|
"cypress": "cypress open",
|
|
"cy:run": "cypress run"
|
|
},
|
|
"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://github.com/sasjs/adapter"
|
|
},
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@cypress/webpack-preprocessor": "^5.9.1",
|
|
"@types/jest": "^26.0.23",
|
|
"@types/mime": "^2.0.3",
|
|
"@types/tough-cookie": "^4.0.0",
|
|
"copyfiles": "^2.4.1",
|
|
"cp": "^0.2.0",
|
|
"cypress": "^7.7.0",
|
|
"dotenv": "^10.0.0",
|
|
"jest": "^27.0.6",
|
|
"jest-extended": "^0.11.5",
|
|
"mime": "^2.5.2",
|
|
"node-polyfill-webpack-plugin": "^1.1.4",
|
|
"path": "^0.12.7",
|
|
"process": "^0.11.10",
|
|
"rimraf": "^3.0.2",
|
|
"semantic-release": "^17.4.4",
|
|
"terser-webpack-plugin": "^5.1.4",
|
|
"ts-jest": "^27.0.3",
|
|
"ts-loader": "^9.2.2",
|
|
"tslint": "^6.1.3",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"typedoc": "^0.21.2",
|
|
"typedoc-neo-theme": "^1.1.1",
|
|
"typedoc-plugin-external-module-name": "^4.0.6",
|
|
"typescript": "^4.3.4",
|
|
"webpack": "^5.41.1",
|
|
"webpack-cli": "^4.7.2"
|
|
},
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"@sasjs/utils": "^2.23.2",
|
|
"axios": "^0.21.1",
|
|
"axios-cookiejar-support": "^1.0.1",
|
|
"form-data": "^4.0.0",
|
|
"https": "^1.0.0",
|
|
"tough-cookie": "^4.0.0",
|
|
"url": "^0.11.0"
|
|
}
|
|
}
|