This repository has been archived by the owner on Oct 20, 2023. It is now read-only.
forked from tilgovi/dom-anchor-text-position
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "dom-anchor-text-position",
"version": "2.0.1",
"description": "Convert between DOM Range instances and text positions.",
"scripts": {
"test": "karma start"
},
"repository": {
"type": "git",
"url": "https://github.com/tilgovi/dom-anchor-text-position.git"
},
"keywords": [
"dom",
"anchor",
"range",
"text",
"position"
],
"author": "Randall Leeds <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tilgovi/dom-anchor-text-position/issues"
},
"homepage": "https://github.com/tilgovi/dom-anchor-text-position",
"main": "dist/TextPositionAnchor.js",
"browser": "TextPositionAnchor.js",
"browserify": {
"transform": [
"babelify"
]
},
"dependencies": {
"dom-seek": "^1.0.1",
"node-iterator-shim": "^2.0.1"
},
"devDependencies": {
"babel": "^5.4.3",
"babelify": "^6.1.1",
"browserify": "^10.2.4",
"browserify-istanbul": "^0.2.1",
"chai": "^2.3.0",
"gulp": "^3.9.0",
"gulp-babel": "^5.1.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"karma": "^0.12.32",
"karma-browserify": "^4.2.1",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.3.1",
"karma-fixture": "^0.2.4",
"karma-html2js-preprocessor": "^0.1.0",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^0.1.4",
"karma-sauce-launcher": "^0.2.11",
"karma-source-map-support": "^1.0.0",
"mocha": "^2.2.5"
}
}