-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
79 lines (79 loc) · 2.44 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
{
"name": "sharepointplus",
"version": "6.2.0",
"description": "A library that offers an easy interface to deal with Sharepoint",
"module": "./es5/index.js",
"main": "./es5/index.js",
"scripts": {
"start": "cross-env NODE_ENV=cjs nodemon --exec npx babel-node test.js",
"build:es5": "(if exist es5 rmdir es5 /s /q) && cross-env NODE_ENV=es babel src --out-dir es5",
"build:dist": "(if exist dist rmdir dist /s /q) && cross-env NODE_ENV=dist babel src --out-dir dist",
"build:browser": "npx webpack",
"build": "npm run lint && npm run build:es5 && npm run build:dist && npm run build:browser && npm run tests && npm run doc",
"lint": "eslint ./src/",
"tests": "cd ./tests/ && node ./index.js",
"test": "npm run tests",
"doc": "(if exist docs rmdir docs /s /q) && npx jsdoc ./src/ -t jsdoc_template/ -d docs -r"
},
"directories": {
"doc": "docs"
},
"browser": {
"sp-request": false,
"xmldom": false
},
"dependencies": {
"@babel/runtime-corejs3": "^7.7.7",
"cross-env": "^7.0.3",
"sp-request": "^2.1.3"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@babel/runtime": "^7.7.7",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"browserslist": "^4.20.4",
"caniuse-lite": "^1.0.30001352",
"cheerio": "^1.0.0-rc.5",
"command-line-args": "^5.1.1",
"core-js": "^3.6.1",
"eslint": "^6.8.0",
"esm": "^3.2.25",
"extend": "^3.0.2",
"jsdoc": "^3.6.3",
"lodash": "^4.17.5",
"node-expose-sspi": "^0.1.55",
"node-fetch": "^3.0.0-beta.9",
"nodemon": "^2.0.2",
"prompt": "^1.0.0",
"request-promise": "^4.2.5",
"webpack": "^4.41.4",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^3.3.10",
"webpack-strip-block": "^0.2.0",
"xmldom": "^0.1.31",
"xmlserializer": "^0.6.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aymkdn/SharepointPlus.git"
},
"keywords": [
"sharepoint"
],
"browserslist": "defaults,ie >= 10",
"author": "AymKdn",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/Aymkdn/SharepointPlus/issues"
},
"homepage": "http://aymkdn.github.io/SharepointPlus/",
"_comments": {
"module": "Replace 'es5' with 'src' during development phase"
}
}