-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 872 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": "selection-observer",
"version": "0.0.1",
"description": "Observer for tracking selection changes",
"main": "dist/index.js",
"directories": {
"example": "example",
"lib": "lib"
},
"scripts": {
"dev": "parcel --open watch example/index.html -d ./.build",
"build:doc": "parcel build example/index.html -d ./docs --public-url ./",
"prepublish": "parcel build lib/index.js -d ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Satanpit/selection-observer.git"
},
"keywords": [
"javascript",
"selection",
"range"
],
"author": "Alex Khyrenko",
"license": "ISC",
"bugs": {
"url": "https://github.com/Satanpit/selection-observer/issues"
},
"homepage": "https://github.com/Satanpit/selection-observer#readme",
"devDependencies": {
"parcel-bundler": "^1.12.4"
}
}