-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "cm-resize",
"version": "1.0.1",
"description": "Add a resize handle to your CodeMirror editor.",
"author": "Andreas Borgen (https://github.com/Sphinxxxx)",
"homepage": "https://github.com/Sphinxxxx/cm-resize",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Sphinxxxx/cm-resize.git"
},
"bugs": {
"url": "https://github.com/Sphinxxxx/cm-resize/issues"
},
"main": "dist/cm-resize.js",
"unpkg": "dist/cm-resize.min.js",
"module": "src/cm-resize.js",
"files": [
"src/",
"dist/"
],
"scripts": {
"prepublish": "bash ./scripts/prepub.sh",
"postpublish": "bash ./scripts/postpub.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"gulp": "^4.0.0",
"gulp-file": "^0.4.0",
"gulp-header": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-strip-comments": "^2.5.2",
"gulp-uglify": "^3.0.0",
"node-sass": "^4.8.3",
"rollup": "^0.56.2",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-node-resolve": "^3.0.3"
},
"dependencies": {
"drag-tracker": "^0.4.3"
}
}