-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1004 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
{
"name": "contenteditable-arrow-navigation",
"version": "0.3.0",
"description": "A utility to make multiple content editable elements easier to navigate with arrows.",
"source": "src/index.js",
"main": "dist/main.js",
"files": [
"dist/main.js",
"dist/main.js.map"
],
"scripts": {
"start": "parcel ./public/index.html --open",
"build-dev": "parcel build ./public/index.html",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "parcel watch",
"build": "rm -rf ./dist && parcel build",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielklapp/contenteditable-arrow-navigation.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielklapp/contenteditable-arrow-navigation/issues"
},
"homepage": "https://github.com/danielklapp/contenteditable-arrow-navigation#readme",
"devDependencies": {
"parcel": "^2.6.2"
}
}