forked from hso-nn/crm-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.24 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.24 KB
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
{
"name": "crm-sdk",
"version": "1.8.0",
"author": "Dynamics Software <solutions@dynamicssoftware.com> (http://www.dynamicssoftware.com)",
"description": "Javasript Software Development Kit for Microsoft Dynamics CRM Web API",
"main": "dist/CRMSDK.js",
"repository": {
"type": "git",
"url": "https://github.com/dys-solutions/crm-sdk.git"
},
"keywords": [
"crm",
"dynamics",
"crm-sdk",
"webapi",
"javascript",
"library",
"odata",
"fetch"
],
"license": "MIT",
"scripts": {
"build": "webpack",
"build:prod": "cross-env NODE_ENV=production webpack --bail --progress",
"watch": "webpack --watch",
"start": "webpack-dev-server --hot --inline",
"starthttps": "webpack-dev-server --hot --inline --https"
},
"babel": {
"presets": [
"es2015",
"es2017"
]
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"cross-env": "^3.1.4",
"eslint": "^3.18.0",
"eslint-loader": "^1.9.0",
"json-loader": "^0.5.7",
"webpack": "^2.6.1",
"webpack-auto-inject-version": "^0.5.14",
"webpack-dev-server": "^2.7.1"
}
}