-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
120 lines (120 loc) · 3.61 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "react-taxonomypicker",
"version": "0.0.45",
"description": "Office 365 - SharePoint React Taxonomy Picker",
"main": "dist/React.TaxonomyPicker.js",
"module": "src/index.package.ts",
"style": "dist/React.TaxonomyPicker.css",
"types": "dist/index.d.ts",
"scripts": {
"start": "set NODE_ENV=development && webpack-dev-server --open --mode=development --config ./webpack/webpack.config.dev.js",
"prebuild": "npm install",
"test": "jest --env=jsdom",
"test:coverage": "npm run test && codecov --token=0c91b47b-0df7-40fc-a3a7-1d963103bd22",
"build": "set NODE_ENV=production && webpack --progress --mode=production --config ./webpack/webpack.config.prod.js",
"stats": "set NODE_ENV=production && webpack --progress --config ./webpack/webpack.config.stats.js --profile --json > ./webpack/stats/stats.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jquintozamora/react-taxonomypicker.git"
},
"keywords": [
"React",
"Taxonomy",
"Picker",
"Managed",
"Metadata",
"TermSet",
"TermStore",
"SharePoint",
"Office",
"365"
],
"author": "Jose Quinto <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jquintozamora/react-taxonomypicker/issues"
},
"homepage": "https://github.com/jquintozamora/react-taxonomypicker#readme",
"engines": {
"node": "^10.16.x",
"npm": "6.4.1"
},
"dependencies": {
"react-select": "2.1.1",
"@types/react-select": "2.0.6"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"@types/jest": "24.0.18",
"@types/node": "12.7.8",
"@types/react": "16.9.4",
"@types/react-dom": "16.9.1",
"@types/sharepoint": "2016.1.5",
"autoprefixer": "9.6.1",
"codecov": "3.6.1",
"css-loader": "3.2.0",
"css-modules-typescript-loader": "3.0.1",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"enzyme-to-json": "3.4.0",
"html-webpack-plugin": "4.0.0-beta.8",
"identity-obj-proxy": "3.0.0",
"jest": "24.9.0",
"mini-css-extract-plugin": "0.8.0",
"postcss-custom-properties": "9.0.2",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"postcss-nesting": "7.0.1",
"react": "16.10.1",
"react-dom": "16.10.1",
"react-hot-loader": "4.12.14",
"source-map-loader": "0.2.4",
"style-loader": "1.0.0",
"ts-jest": "24.1.0",
"ts-loader": "6.2.0",
"tslint": "5.20.0",
"tslint-react": "4.1.0",
"typescript": "3.6.3",
"uglifyjs-webpack-plugin": "2.2.0",
"webpack": "4.41.0",
"webpack-cli": "3.3.9",
"webpack-dev-server": "3.8.1",
"webpack-visualizer-plugin": "0.1.11"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/.cache/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/test/unit/__mocks__/fileMock.js",
"\\.(css)$": "identity-obj-proxy"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFiles": [
"<rootDir>/test/setup/setupTests.ts"
],
"testURL": "http://localhost",
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}