-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "sp-screwdriver",
"version": "1.1.1",
"description": "Node.js Screwdriver for SharePoint",
"main": "./dist/index.js",
"typings": "./dist/index",
"scripts": {
"build": "npm run tslint && npm run clean && npm run tsc",
"tslint": "tslint -p .",
"tsc": "tsc -p .",
"clean": "rimraf ./dist",
"test": "ts-node ./test/init && mocha --opts test/mocha.opts || ECHO.",
"test:ci": "mocha --opts test/mocha.opts --ci || ECHO."
},
"repository": {
"type": "git",
"url": "git+https://github.com/koltyakov/sp-screwdriver.git"
},
"keywords": [
"sharepoint",
"rest",
"soap",
"services",
"API"
],
"author": "Andrew Koltyakov <andrew.koltyakov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/koltyakov/sp-screwdriver/issues"
},
"homepage": "https://github.com/koltyakov/sp-screwdriver#readme",
"dependencies": {
"node-sp-auth": "^2.5.7",
"node-sp-auth-config": "^2.9.2",
"sp-request": "^2.1.3",
"cpass": "^2.2.0",
"xml2js": "^0.5.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/colors": "^1.2.1",
"@types/core-js": "^2.5.3",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.3",
"@types/sharepoint": "^2016.1.8",
"@types/xml2js": "^0.4.5",
"chai": "^4.2.0",
"colors": "^1.4.0",
"dotenv": "^8.2.0",
"mkdirp": "^1.0.3",
"mocha": "^7.1.1",
"rimraf": "^3.0.2",
"sp-jsom-node": "^3.0.3",
"ts-node": "^8.8.1",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
}
}