forked from scniro/react-codemirror2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.51 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
{
"name": "react-codemirror2",
"version": "5.0.3",
"description": "a tiny react codemirror component wrapper",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"prestart": "npm run webpack",
"start": "node docs/server.js",
"prewebpack": "npm run transpile",
"webpack": "webpack-cli --mode production --display-error-details --optimize-minimize --config docs/webpack.config.js",
"transpile": "tsc",
"posttranspile": "gulp ts-scrub",
"pretest": "npm run transpile",
"test": "jest"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**"
],
"setupFiles": [
"@nteract/mockument",
"raf/polyfill"
],
"testRegex": "./test/(index|index.server).spec.tsx",
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/scniro/react-codemirror2.git"
},
"author": "scniro",
"license": "MIT",
"bugs": {
"url": "https://github.com/scniro/react-codemirror2/issues"
},
"homepage": "https://github.com/scniro/react-codemirror2#readme",
"keywords": [
"react",
"react-codemirror",
"codemirror",
"editor",
"syntax",
"ide",
"code"
],
"peerDependencies": {
"react": ">=15.5 <=16.x",
"codemirror": "5.x"
},
"devDependencies": {
"@nteract/mockument": "1.0.4",
"@types/codemirror": "0.0.56",
"@types/jest": "22.2.3",
"@types/react": "16.3.14",
"babel-core": "6.26.3",
"babel-loader": "7.1.4",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"codemirror": "5.38.0",
"coveralls": "3.0.1",
"css-loader": "0.28.11",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"express": "4.16.3",
"gulp": "3.9.1",
"gulp-babel": "7.0.1",
"gulp-beautify": "2.0.1",
"gulp-replace": "1.0.0",
"jest": "22.4.4",
"node-sass": "4.9.0",
"prismjs": "1.14.0",
"raf": "3.4.0",
"react": "16.3.2",
"react-dom": "16.3.2",
"react-redux": "5.0.7",
"react-test-renderer": "16.3.2",
"redux": "4.0.0",
"rimraf": "2.6.2",
"sass-loader": "7.0.1",
"sinon": "5.0.7",
"style-loader": "0.21.0",
"ts-jest": "22.4.6",
"typescript": "2.8.3",
"typescript-formatter": "7.2.0",
"webpack": "4.8.3",
"webpack-cli": "2.1.3"
}
}