-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 874 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 874 Bytes
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
{
"name": "codemirror",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "npm run build:linter && npm run build",
"build": "rollup --config",
"build:linter": "npm run build --prefix ../",
"start": "npm run build:linter && npm run serve",
"serve": "npm run build && serve"
},
"author": "",
"license": "MIT",
"dependencies": {
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lint": "^6.9.6",
"@rollup/plugin-commonjs": "29.0.2",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"codemirror": "^6.0.2",
"eslint-linter-browserify": "file:../",
"rollup": "^4.60.4",
"serve": "^14.2.6"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-json": "^6.1.0",
"globals": "^17.6.0"
}
}