-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 895 Bytes
/
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
{
"name": "easyedit",
"version": "1.5.0",
"description": "inline editing of a single line of text",
"main": "easyedit.js",
"scripts": {
"test": "budo docs/code.js:index.js --dir docs --live",
"docs": "markdown-api README.md easyedit.js",
"build": "browserify docs/code.js -o docs/index.js",
"setup": "yarn docs && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidfig/easyedit.git"
},
"keywords": [
"javascript",
"edit",
"inline"
],
"author": "David Figatner (YOPEY YOPEY LLC)",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidfig/easyedit/issues"
},
"homepage": "https://github.com/davidfig/easyedit#readme",
"dependencies": {
"clicked": "^1.1.0",
"eventemitter3": "^3.0.0"
},
"devDependencies": {
"fork-me-github": "^1.0.3",
"highlight.js": "^9.12.0"
}
}