-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 992 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 992 Bytes
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
{
"name": "powerappstypescriptsample",
"version": "1.0.0",
"description": "",
"main": "",
"type": "module",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"parcel-dev": "parcel build ts-output/*.js --global Mf --out-dir parcel-dist/dev/mf_/js/ no-minify",
"parcel-prod": "parcel build ts-output/*.js --global Mf --out-dir parcel-dist/prod/mf_/js/",
"test": "jest"
},
"jest": {
"testEnvironment": "node",
"verbose": false,
"testMatch": [
"**/ts-output/**/*.test.js"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "13.1.6",
"@types/jest": "24.0.25",
"@types/sinon": "7.5.1",
"@types/xrm": "9.0.18",
"jest": "24.9.0",
"jest-editor-support": "27.1.1",
"jest-junit": "10.0.0",
"jest-sinon": "1.0.2",
"typescript": "3.7.4",
"xrm-mock": "3.4.17",
"sinon": "8.1.0",
"parcel": "1.12.4",
"ts-jest": "24.3.0"
},
"dependencies": {}
}