-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
64 lines (64 loc) · 1.56 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
{
"name": "xrm-mock",
"description": "A fake implementation of the Xrm object model. Used for testing Dynamics 365 client-side scripts.",
"version": "3.6.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"output": "coverage",
"src": "src",
"test": "test"
},
"files": [
"dist",
"build"
],
"keywords": [
"dynamics-crm",
"dynamics-365",
"xrm"
],
"scripts": {
"build": "tsc && npm run lint && npm run test && npm run buildOne",
"buildOne": "tsc --outFile ./build/index.js --module amd",
"lint": "tslint -c tslint.json 'src/**/*.ts' && tslint -c tslint.json 'test/**/*.ts'",
"test": "jest --coverage --maxWorkers=4",
"test-no-cover": "jest --maxWorkers=4",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/camelCaseDave/xrm-mock.git"
},
"author": "Dave Clark",
"license": "MIT",
"bugs": {
"url": "https://github.com/camelCaseDave/xrm-mock/issues"
},
"homepage": "https://github.com/camelCaseDave/xrm-mock#readme",
"devDependencies": {
"@babel/types": "^7.12.13",
"@types/jest": "^27.0.7",
"@types/node": "^14.0.13",
"@types/sinon": "^9.0.4",
"@types/xrm": "^9.0.80",
"jest": "^27.3.1",
"sinon": "^9.0.2",
"ts-jest": "^27.0.7",
"tslint": "^6.1.3",
"typescript": "^4.1.5"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testURL": "http://localhost/",
"testMatch": [
"**/test/**/*.+(ts|js)"
]
}
}