-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
82 lines (82 loc) · 2.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "sp-request",
"version": "3.0.0",
"description": "Simplified SharePoint HTTP client",
"main": "./lib/src/index.js",
"typings": "./lib/src/index",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"build": "npm run lint && tsc -p .",
"prepublishOnly": "rimraf -- lib && npm run build",
"dev": "tsc -p . --watch",
"lint": "eslint -c .eslintrc.json --ext .ts src test",
"test:dev": "mocha ./test/integration/tests.ts --watch --watch-extensions ts",
"test:unit": "mocha ./test/unit/tests.ts --watch --watch-extensions ts",
"coverage": "nyc mocha ./test/integration/tests.ts"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"report-dir": "coverage/integration",
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"html",
"text-summary"
]
},
"mocha": {
"require": [
"ts-node/register",
"source-map-support/register"
],
"full-trace": true,
"bail": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/s-KaiNet/sp-request.git"
},
"author": "Sergei Sergeev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/s-KaiNet/sp-request/issues"
},
"keywords": [
"request",
"sharepoint",
"rest"
],
"homepage": "https://github.com/s-KaiNet/sp-request",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/mockery": "^1.4.29",
"@types/node": "^14.0.13",
"@types/sinon": "^9.0.4",
"@typescript-eslint/eslint-plugin": "3.3.0",
"@typescript-eslint/parser": "3.3.0",
"chai": "^4.2.0",
"eslint": "7.3.0",
"mocha": "^8.0.1",
"mockery": "^2.1.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"source-map-support": "^0.5.19",
"ts-node": "^8.10.2",
"typescript": "3.9.5"
},
"dependencies": {
"@types/core-js": "^2.5.3",
"got": "10.7.0",
"node-sp-auth": "^3.0.0"
}
}