61 строка
1.8 KiB
JSON
61 строка
1.8 KiB
JSON
{
|
|
"name": "simplerestclients",
|
|
"version": "1.0.0",
|
|
"description": "A library of components for accessing RESTful services with javascript/typescript.",
|
|
"author": "David de Regt <David.de.Regt@microsoft.com>",
|
|
"scripts": {
|
|
"prepare": "tsc",
|
|
"clean": "rimraf dist",
|
|
"build": "npm run lint && tsc",
|
|
"lint": "eslint --config .eslintrc --ext .ts src test",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"test": "npm run clean && karma start --singleRun",
|
|
"test:watch": "npm run clean && karma start",
|
|
"test:browser": "npm run clean && karma start --browsers=Chrome --single-run=false --auto-watch"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@types/faker": "4.1.8",
|
|
"@types/jasmine": "3.5.0",
|
|
"@types/jasmine-ajax": "3.3.0",
|
|
"@typescript-eslint/eslint-plugin": "2.11.0",
|
|
"@typescript-eslint/parser": "2.11.0",
|
|
"eslint": "6.7.2",
|
|
"eslint-config-skype": "1.4.0",
|
|
"eslint-plugin-import": "^2.19.1",
|
|
"faker": "4.1.0",
|
|
"fork-ts-checker-webpack-plugin": "3.1.1",
|
|
"jasmine": "3.5.0",
|
|
"jasmine-core": "3.5.0",
|
|
"karma": "6.3.16",
|
|
"karma-chrome-launcher": "3.1.0",
|
|
"karma-jasmine": "2.0.1",
|
|
"karma-jasmine-ajax": "0.1.13",
|
|
"karma-jasmine-html-reporter": "1.4.2",
|
|
"karma-sourcemap-loader": "0.3.7",
|
|
"karma-spec-reporter": "0.0.32",
|
|
"karma-webpack": "5.0.0",
|
|
"rimraf": "3.0.0",
|
|
"ts-loader": "9.4.2",
|
|
"typescript": "3.7.3",
|
|
"webpack": "5.75.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/SimpleRestClients"
|
|
},
|
|
"main": "index.js",
|
|
"bugs": {
|
|
"url": "https://github.com/Microsoft/SimpleRestClients/issues"
|
|
},
|
|
"keywords": [
|
|
"simplerestclient",
|
|
"rest",
|
|
"restclient",
|
|
"xmlhttprequest",
|
|
"superagent"
|
|
],
|
|
"license": "MIT",
|
|
"types": "dist/SimpleRestClients.d.ts"
|
|
}
|