This repository has been archived by the owner on Jan 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 2.94 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
{
"name": "@sensenet/controls-react",
"version": "2.3.5",
"description": "React controls for sensenet",
"main": "dist/index.js",
"scripts": {
"precommit": "npm run test",
"commit": "git-cz",
"pretest": "tslint --project tsconfig.test.json && rimraf temp && tsc -p tsconfig.test.json",
"test": "rimraf coverage && nyc mocha -p tsconfig.test.json ./temp/test/index.js",
"prebuild": "tslint --project tsconfig.json",
"build": "rimraf dist && tsc -p tsconfig.json && cpx \"src/**/*.css\" dist",
"prepublishOnly": "npm run test && npm run build",
"publish:development": "npm run build && npm t && npm run typedoc && npm publish --tag development",
"typedoc": "typedoc --mode modules --out documentation src --exclude **/index.ts --theme c:/Users/%USERNAME%/AppData/Roaming/npm/node_modules/@sensenet/typedoc-theme/sn-theme"
},
"files": [
"dist",
"src",
"test",
"documentation",
"coverage"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SenseNet/sn-controls-react.git"
},
"keywords": [
"sensenet",
"ecm",
"react",
"reactjs",
"controls",
"components"
],
"author": "SenseNet",
"license": "GPL-2.0",
"nyc": {
"cache": true,
"include": "temp/src/**/*.*",
"exclude": [
"temp/test/**/*.*",
"**/index.js"
],
"all": true,
"reporter": [
"lcov",
"text-summary",
"json"
]
},
"bugs": {
"url": "https://github.com/SenseNet/sn-controls-react/issues"
},
"homepage": "https://sensenet.com",
"dependencies": {
"@date-io/date-fns": "0.0.2",
"@date-io/moment": "0.0.2",
"@material-ui/core": "^3.2.0",
"@sensenet/client-core": "^1.3.1",
"@sensenet/control-mapper": "^1.0.1",
"@sensenet/icons-react": "^1.2.3",
"@sensenet/redux": "^5.1.1",
"lodash.debounce": "^4.0.8",
"material-ui-pickers": "^2.0.1",
"moment": "^2.22.2",
"radium": "^0.25.0",
"react-quill": "^1.3.1",
"react-responsive": "^6.0.1",
"react-select": "^2.0.0"
},
"devDependencies": {
"@types/lodash.debounce": "^4.0.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.10.3",
"@types/radium": "^0.24.2",
"@types/react": "^16.4.16",
"@types/react-dom": "^16.0.7",
"@types/react-redux": "^6.0.9",
"@types/react-responsive": "^3.0.2",
"autoprefixer": "^9.1.5",
"chalk": "2.4.1",
"cpx": "^1.5.0",
"date-fns": "^2.0.0-alpha.21",
"dotenv": "6.1.0",
"fs-extra": "^7.0.1",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"object-assign": "4.1.1",
"postcss-flexbugs-fixes": "4.1.0",
"promise": "8.0.2",
"react": "^16.6.3",
"react-dev-utils": "^6.0.5",
"react-dom": "^16.6.3",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "sensenet-kfi-cz-conventional-changelog"
}
},
"typings": "./dist/index.d.ts"
}