-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
87 lines (87 loc) · 2.24 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "xpath-range",
"version": "1.1.1",
"description": "A (Browser) Range implementation / wrapper with XPath features, extracted from Annotator",
"main": "index.js",
"scripts": {
"test": "eslint src && BABEL_ENV=test karma start --single-run",
"prepublish": "babel -d lib src"
},
"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": "^4.0.1",
"get-document": "^1.0.0",
"simple-xpath-position": "^2.0.0"
},
"devDependencies": {
"assertive-chai": "^2.0.2",
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-plugin-istanbul": "^2.0.1",
"babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
"babel-plugin-transform-es3-property-literals": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"codecov.io": "^0.1.6",
"dom-node-iterator": "^3.5.0",
"eslint": "^3.5.0",
"is-ie8": "^1.0.2",
"karma": "^1.3.0",
"karma-browserify": "^5.1.0",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-fixture": "^0.2.5",
"karma-html2js-preprocessor": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sauce-launcher": "^1.0.0",
"mocha": "^3.0.2",
"phantomjs-prebuilt": "^2.1.12",
"rangy": "^1.3.0",
"watchify": "^3.7.0"
},
"babel": {
"env": {
"test": {
"plugins": [
"istanbul",
"transform-es3-member-expression-literals",
"transform-es3-property-literals"
]
}
},
"plugins": [
"transform-es3-member-expression-literals",
"transform-es3-property-literals"
],
"presets": [
[
"es2015",
{
"loose": true
}
]
],
"sourceMaps": "inline"
},
"eslintConfig": {
"env": {
"browser": true
},
"extends": "eslint:recommended",
"parser": "babel-eslint",
"rules": {
"comma-dangle": 0
}
}
}