-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "codemirror-revisedsearch",
"version": "1.0.12",
"description": "A revised interface for the default CodeMirror search addon, putting the find and replace fields in the same dialog as the buttons.",
"main": "dist/revised-search.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf dist && mkdirp dist",
"build": "babel src/revised-search.js --out-file dist/revised-search.js --source-maps"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maloric/CodeMirror-RevisedSearch.git"
},
"keywords": [
"codemirror",
"search",
"find",
"replace"
],
"author": "Jamie Morris",
"license": "MIT",
"bugs": {
"url": "https://github.com/Maloric/CodeMirror-RevisedSearch/issues"
},
"homepage": "https://github.com/Maloric/CodeMirror-RevisedSearch#readme",
"dependencies": {
"codemirror-advanceddialog": "^1.1.9"
},
"peerDependencies": {
"codemirror": "^5.21.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.1"
}
}