-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.14 KB
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
{
"name": "codemirror-record",
"version": "1.1.5",
"description": "A recording and playing library for CodeMirror. Compatible with version later than 5.37.0.",
"scripts": {
"build": "webpack --mode=production",
"serve": "./node_modules/http-server/bin/http-server -o /demo",
"test": "echo \"Error: no test specified\" && exit 1"
},
"main": "./dist/main.js",
"module": "./src/index.js",
"files": [
"dist/*",
"src/*",
"*.json",
"*.js",
"*.md"
],
"homepage": "http://codemirror-record.haoranyu.com/",
"repository": {
"type": "git",
"url": "https://github.com/haoranyu/codemirror-record"
},
"keywords": [
"record",
"play",
"codemirror",
"code"
],
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-loader": "^8.2.2",
"codemirror": "^5.62.3",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-webpack-plugin": "^3.0.1",
"http-server": "^14.1.1",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
},
"author": "Haoran Yu",
"license": "MIT",
"dependencies": {
"lodash.clonedeep": "^4.5.0"
}
}