forked from scottdurow/pcf-react
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.2 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.2 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
{
"name": "pcf-react",
"version": "1.0.11",
"description": "Quicker and easier PCF React controls with support for MVVM & unit testing",
"main": "lib/index.js",
"scripts": {
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push",
"test": "tsc & jest",
"build": "tsc",
"prepublishOnly": "npm version patch"
},
"repository": {
"type": "git",
"url": "https://github.com/scottdurow/pcf-react.git"
},
"author": "Scott Durow",
"license": "MIT",
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ste-events": "^1.6.11",
"@types/react-dom": "^16.9.7",
"@types/xrm": "^9.0.15",
"@types/powerapps-component-framework": "^1.2.0"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-deprecation": "^1.0.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"jest": "^24.9.0",
"jest-environment-jsdom-fourteen": "^0.1.0",
"prettier": "^1.18.2",
"ts-jest": "^24.3.0",
"typescript": "^3.8.3"
}
}