forked from goto100/xpath
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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": "xpath-ts",
"version": "1.3.13",
"description": "DOM 3 and 4 XPath 1.0 implemention for browser and Node.js environment.",
"author": {
"name": "Cameron McCormack",
"url": "https://mcc.id.au/"
},
"license": "MIT",
"keywords": [
"xpath",
"xml",
"dom"
],
"contributors": [
{
"name": "James Rishe"
},
{
"name": "Yaron Naveh",
"url": "http://webservices20.blogspot.com/"
},
{
"name": "goto100"
},
{
"name": "Matus Zamborsky",
"email": "zamborsky@gmail.com",
"url": "https://github.com/backslash47"
}
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/jsdom": "^12.2.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.0",
"chai": "^4.2.0",
"jsdom": "^13.0.0",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.3.1",
"tslint-no-circular-imports": "^0.4.0",
"typescript": "^3.5.1",
"xmldom-ts": "^0.3.1"
},
"main": "./dist/lib/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"test": "mocha --require ts-node/register test/**/*.ts",
"lint": "tslint --project ./",
"build": "tsc",
"prepublishOnly": "npm run lint && npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git://github.com/backslash47/xpath"
}
}