-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
130 lines (130 loc) · 3.73 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
121
122
123
124
125
126
127
128
129
130
{
"name": "ship-components-texteditor",
"version": "2.2.3",
"description": "Rich Text Editor for React",
"main": "src/TextEditor.js",
"scripts": {
"start": "grunt server",
"build": "npm run test && grunt build",
"lint": "./node_modules/eslint/bin/eslint.js src/*.js",
"test": "npm run lint && ./node_modules/jest-cli/bin/jest.js --coverage",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v"
},
"repository": {
"type": "git",
"url": "https://github.com/ship-components/ship-components-texteditor.git"
},
"keywords": [
"react",
"rich text editor",
"draft-js"
],
"author": "Isaac Suttell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ship-components/ship-components-texteditor/issues"
},
"homepage": "https://github.com/ship-components/ship-components-texteditor",
"contributors": [
{
"name": "Isaac Suttell",
"email": "[email protected]"
},
{
"name": "Sepand Assadi",
"email": "[email protected]"
},
{
"name": "Chris Orescan",
"email": "[email protected]"
},
{
"name": "Adam Sas",
"email": "[email protected]"
}
],
"dependencies": {
"draft-convert": "^2.0.1",
"draft-js": "^0.10.5",
"linkify-it": "^2.0.2",
"ship-components-dialog": "^1.0.0",
"ship-components-icon": "^0.1.0",
"ship-components-textinput": "^0.3.9",
"tlds": "^1.180.0"
},
"devDependencies": {
"autoprefixer": "^6.5.4",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-es2015-classes": "^6.18.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"babel-runtime": "^6.20.0",
"bluebird": "~3.5.0",
"classnames": "^2.2.5",
"coveralls": "^2.12.0",
"css-loader": "^0.26.1",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.7.0",
"enzyme-to-json": "^3.0.1",
"eslint": "^3.18.0",
"eslint-config-ship-components": "^1.1.0",
"eslint-loader": "^1.7.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^1.0.1",
"figlet": "^1.2.0",
"file-loader": "^0.9.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-eslint": "^19.0.0",
"grunt-webpack": "^1.0.18",
"immutable": "^3.8.1",
"jest": "^19.0.2",
"jest-cli": "^19.0.2",
"jest-css-modules": "^1.1.0",
"json-loader": "^0.5.4",
"package-banner": "^0.1.1",
"postcss-calc": "^6.0.2",
"postcss-color-function": "^2.0.1",
"postcss-color-hex-alpha": "^2.0.0",
"postcss-loader": "^1.2.1",
"postcss-nested": "^1.0.0",
"postcss-simple-vars": "^3.0.0",
"prop-types": "^15.6.1",
"react": ">=16.0.0 <17.0.0",
"react-dom": ">=16.0.0 <17.0.0",
"react-test-renderer": ">=16.0.0 <17.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"jest": {
"setupFiles": [
"./jest-setup.js"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"moduleNameMapper": {
"\\.(css)$": "<rootDir>/node_modules/jest-css-modules"
},
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/classnames",
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils"
]
},
"babelJest": {
"include": [
"src/**/*.@(js|jsx|es6)",
"node_modules/ship-components-highlight-click/src/**/*.@(js|jsx|es6)",
"node_modules/ship-components-outsideclick/src/**/*.@(js|jsx|es6)"
]
}
}