-
Notifications
You must be signed in to change notification settings - Fork 195
/
Copy pathpackage.json
97 lines (97 loc) · 2.36 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
{
"name": "react-codemirror2",
"version": "8.0.1",
"description": "a tiny react codemirror component wrapper",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"prestart": "npm run build",
"start": "node docs/server.js",
"prebuild": "npm run transpile",
"build": "webpack-cli --mode production --config docs/webpack.config.js",
"transpile": "tsc",
"posttranspile": "gulp ts-scrub",
"pretest": "npm run transpile",
"test": "jest"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**"
],
"setupFiles": [
"./test/setup.js"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"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": {
"codemirror": "5.x",
"react": ">=15.5 <=18.x"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-transform-object-assign": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@nteract/mockument": "1.0.4",
"@types/codemirror": "0.0.x",
"@types/jest": "25.2.3",
"@types/react": "16.9.35",
"babel-loader": "^9.1.3",
"codemirror": "5.x",
"coveralls": "3.1.0",
"css-loader": "7.1.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"express": "^4.19.2",
"gulp": "^5.0.0",
"gulp-babel": "8.0.0",
"gulp-beautify": "3.0.0",
"gulp-replace": "1.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prismjs": "^1.29.0",
"raf": "3.4.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "7.2.0",
"react-test-renderer": "16.13.1",
"redux": "4.0.5",
"rimraf": "3.0.2",
"sass": "^1.83.4",
"sass-loader": "^14.1.1",
"sinon": "9.0.2",
"style-loader": "^4.0.0",
"ts-jest": "^29.1.2",
"typescript": "5.4.5",
"typescript-formatter": "7.2.2",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}