forked from AleksandrRogov/DynamicsWebApi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "dynamics-web-api",
"version": "1.6.10",
"description": "DynamicsWebApi is a Microsoft Dynamics CRM Web API helper library",
"keywords": [
"crm",
"web-api",
"helper",
"dynamics-crm",
"dynamics-365",
"dynamics-crm-webapi",
"dynamics-crm-online"
],
"main": "lib/dynamics-web-api.js",
"types": "types/dynamics-web-api.d.ts",
"author": {
"name": "Aleksandr Rogov"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.13.3",
"gulp": "^3.9.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^11.4.0",
"rimraf": "^2.6.2",
"sinon": "^1.17.7",
"webpack": "^2.7.0",
"webpack-strip-block": "^0.1.1"
},
"dependencies": {},
"license": "MIT",
"scripts": {
"test": "mocha tests/*-tests.js",
"test-coverage": "rimraf coverage && istanbul cover node_modules/mocha/bin/_mocha tests/*-tests.js",
"build": "rimraf dist && rimraf coverage && webpack",
"release-patch": "npm version patch -m \"Release v%s\"",
"release-minor": "npm version minor -m \"Release v%s\"",
"preversion": "npm test",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags",
"coveralls": "npm run test-coverage -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/AleksandrRogov/DynamicsWebApi.git"
},
"browser": {
"./lib/requests/http.js": "./lib/requests/xhr.js"
}
}