-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "xpath2.js",
"version": "1.0.0-alpha-6",
"license": "MIT",
"description": "DOM-agnostic implementation of XPath 2 parser and evaluator in JavaScript",
"main": "lib/index.js",
"keywords": [
"xpath",
"xpath2",
"xpath 2",
"xpath 2.0",
"xpath3",
"xpath 3",
"xpath 3.0",
"xmlpath",
"dom",
"xml"
],
"repository": {
"type": "git",
"url": "https://github.com/ilinsky/xpath2.js.git"
},
"homepage": "https://github.com/ilinsky/xpath2.js",
"bugs": "https://github.com/ilinsky/xpath2.js/issues",
"author": "Sergey Ilinsky <[email protected]> (http://www.ilinsky.com)",
"scripts": {
"lint": "node ./node_modules/eslint/bin/eslint ./lib/**/*.js",
"test": "node ./node_modules/mocha/bin/mocha ./test/**/*Spec.js"
},
"devDependencies": {
"chai": "^4.3.3",
"eslint": "^6.8.0",
"mocha": "~2.1.0",
"xmldom": "^0.5.0"
},
"maintainers": [
{
"name": "Sergey Ilinsky",
"email": "[email protected]",
"url": "http://www.ilinsky.com"
}
],
"contributors": [
{
"name": "Rui Azevedo",
"email": "[email protected]",
"url": "http://www.r-site.net/"
}
]
}