-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·78 lines (78 loc) · 1.88 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
{
"name": "react-ckeditor-wrapper",
"version": "1.1.3",
"description": "CKEditor wrapper for react",
"keywords": [
"react",
"react-component",
"ckeditor",
"wysiwug"
],
"files": [
"lib",
"assets/*.css"
],
"main": "./lib/index.js",
"homepage": "https://github.com/luigiinred/react-ckeditor-wrapper",
"repository": {
"type": "git",
"url": "https://github.com/luigiinred/react-ckeditor-wrapper.git"
},
"maintainers": [
],
"bugs": {
"url": "https://github.com/luigiinred/react-ckeditor-wrapper/issues"
},
"licenses": "MIT",
"config": {
"port": 8010
},
"scripts": {
"build": "rc-tools run build",
"babel": "babel src -d lib",
"gh-pages": "rc-tools run gh-pages",
"start": "rc-tools run server",
"pub": "rc-tools run pub --babel-runtime",
"lint": "rc-tools run lint",
"karma": "rc-tools run karma",
"saucelabs": "rc-tools run saucelabs",
"test": "jest",
"chrome-test": "rc-tools run chrome-test",
"coverage": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"jest": {
"collectCoverageFrom": [
"src/**/*"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-ie": "^6.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^2.11.15",
"css-animation": "^1.2.0",
"enzyme": "^2.6.0",
"enzyme-to-json": "^1.4.1",
"expect.js": "~0.3.1",
"jest": "^17.0.3",
"pre-commit": "1.x",
"rc-tools": "5.x",
"react": "^15.6.1",
"react-addons-test-utils": "15.x",
"react-dom": "^15.6.1"
},
"dependencies": {
"babel-runtime": "6.x",
"classnames": "2.x",
"dom-scroll-into-view": "1.x",
"happypack": "3.1.0",
"rc-animate": "2.x",
"rc-util": "3.x"
},
"pre-commit": [
"lint"
]
}