-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "@emmetio/codemirror-plugin",
"version": "1.2.4",
"description": "Plugin for CodeMirror web editor",
"main": "dist/extension.cjs.js",
"module": "dist/extension.es.js",
"types": "dist/extension.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -wc",
"clean": "rm -rf ./dist",
"prepare": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emmetio/codemirror-plugin.git"
},
"keywords": [],
"author": "Sergey Chikuyonok <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/emmetio/codemirror-plugin/issues"
},
"homepage": "https://github.com/emmetio/codemirror-plugin#readme",
"files": [
"dist",
"example.html"
],
"devDependencies": {
"@emmetio/abbreviation": "^2.2.2",
"@emmetio/action-utils": "^1.2.2",
"@emmetio/css-abbreviation": "^2.1.4",
"@emmetio/css-matcher": "^1.0.2",
"@emmetio/html-matcher": "^1.3.0",
"@emmetio/math-expression": "^1.0.4",
"@emmetio/scanner": "^1.0.0",
"@types/codemirror": "0.0.91",
"codemirror": "^5.55.0",
"emmet": "^2.3.4",
"rollup": "^2.18.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.1",
"typescript": "^3.9.5"
},
"dependencies": {}
}