-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "quoteurl",
"version": "0.2.0",
"description": "Allow URLs to point to any text piece in a document.",
"main": "quoteurl.js",
"dependencies": {
"dom-anchor-text-quote": "git+https://github.com/Treora/dom-anchor-text-quote.git#0018ae3",
"dom-highlight-range": "^1.0.0",
"scroll-into-view": "^1.6.0",
"selectionchange-polyfill": "https://github.com/Treora/selectionchange-polyfill/archive/v1.0.0.tar.gz",
"trackr": "^2.0.2",
"trackr-reactive-var": "^1.4.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"uglify-js": "^2.6.1"
},
"scripts": {
"build": "npm run build-js && npm run build-min-js",
"build-js": "browserify quoteurl.js -o dist/quoteurl.js",
"build-min-js": "uglifyjs -mc -o dist/quoteurl.min.js dist/quoteurl.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/Treora/quoteurl"
},
"keywords": [
"quote",
"url",
"fragment",
"identifier",
"anchor",
"link",
"selector",
"selection",
"annotation"
],
"author": "Gerben",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/Treora/quoteurl/issues"
},
"homepage": "https://github.com/Treora/quoteurl"
}