-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "xrm-webapi-client",
"description": "Dynamics CRM WebApi Client",
"version": "v0.0.0",
"license": "MIT",
"main": "dist/WebApiClient.min.js",
"types": "dist/WebApiClient.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/XRM-OSS/Xrm-WebApi-Client"
},
"author": {
"name": "Florian Krönert",
"url": "https://github.com/DigitalFlow"
},
"dependencies": {
"@types/bluebird": "^3.5.36"
},
"devDependencies": {
"bestzip": "^2.2.0",
"bluebird": "^3.7.2",
"docdash": "^1.2.0",
"jest": "^27.2.4",
"jsdoc": "^3.6.7",
"jshint": "^2.13.1",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"terser-webpack-plugin": "^5.2.4",
"webpack": "^5.56.0",
"webpack-cli": "^4.8.0"
},
"files": [
"dist"
],
"keywords": [
"dynamics-crm-webapi",
"webapi",
"webapiclient",
"dynamics-crm",
"dynamics-365",
"crm",
"xrm"
],
"scripts": {
"clean": "rimraf dist",
"lint": "jshint src/js",
"build-js": "webpack",
"prebuild-js": "npm run lint && npm run clean",
"test": "jest --coverage",
"pretest": "npm run build",
"copyTypes": "cp src/types/* dist",
"zip": "bestzip dist/release.zip dist/WebApiClient.min.js dist/WebApiClient.d.ts dist/WebApiClient.LICENSE.txt",
"build": "npm run build-js && npm run copyTypes && npm run zip",
"doc": "jsdoc -c ./jsdoc.json -R README.md -d ./docs"
}
}