-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "gd-sprest",
"version": "8.9.6",
"description": "An easy way to develop against the SharePoint REST API.",
"author": "Gunjan Datta <[email protected]> (https://gunjandatta.github.io)",
"license": "MIT",
"main": "build/index.js",
"typings": "@types/index.d.ts",
"keywords": [
"sharepoint",
"sharepoint 2013",
"sharepoint online",
"rest",
"api",
"typescript",
"javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/gunjandatta/sprest.git"
},
"bugs": {
"url": "https://github.com/gunjandatta/sprest/issues"
},
"homepage": "https://dattabase.com",
"dependencies": {
"gd-sprest-def": "1.9.6"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"babel-loader": "^8.2.5",
"core-js": "^3.24.1",
"dts-bundle": "^0.7.3",
"terser-webpack-plugin": "^5.3.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"all": "npm run clean && npm run build && npm run prod && npm run typings",
"clean": "node clean.js",
"build": "tsc && webpack --mode=development",
"prod": "webpack --mode=production",
"typings": "dts-bundle --configJson dts-bundle.json"
}
}