forked from openannotation/xpath-range
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.64 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.64 KB
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
60
{
"name": "xpath-range",
"version": "1.1.0",
"description": "A (Browser) Range implementation / wrapper with XPath features, extracted from Annotator",
"main": "index.js",
"scripts": {
"test": "eslint src && karma start --single-run",
"prepublish": "babel --source-maps inline src --out-dir lib --loose all"
},
"repository": {
"type": "git",
"url": "https://github.com/openannotation/xpath-range.git"
},
"author": "The Annotator project contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/openannotation/xpath-range/issues"
},
"homepage": "https://github.com/openannotation/xpath-range",
"dependencies": {
"dom-seek": "^2.1.0",
"get-document": "^1.0.0"
},
"devDependencies": {
"assertive-chai": "^2.0.2",
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"babelify": "^6.3.0",
"browserify": "^11.2.0",
"browserify-istanbul": "^0.2.1",
"dom-node-iterator": "^3.1.3",
"eslint": "^1.6.0",
"is-ie8": "^1.0.2",
"isparta": "^3.1.0",
"karma": "^0.13.10",
"karma-browserify": "^4.4.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^0.5.2",
"karma-coveralls": "^1.1.2",
"karma-fixture": "^0.2.5",
"karma-html2js-preprocessor": "^0.1.0",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sauce-launcher": "^0.2.14",
"mocha": "^2.3.3",
"phantomjs": "^1.9.18",
"rangy": "^1.3.0",
"simple-xpath-position": "^1.0.0"
},
"eslintConfig": {
"env": {
"browser": true
},
"extends": "eslint:recommended",
"parser": "babel-eslint",
"rules": {
"comma-dangle": 0
}
}
}