-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.29 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
{
"name": "xslt-ts",
"version": "1.1.8",
"description": "XSL Transform 1.0 implemention for browser and Node.js environment.",
"author": {
"name": "Johannes Wilm",
"email": "[email protected]"
},
"license": "LGPL-3.0-or-later",
"keywords": [
"xslt",
"xml",
"dom"
],
"contributors": [
{
"name": "Matus Zamborsky",
"email": "[email protected]",
"url": "https://github.com/backslash47"
}
],
"dependencies": {
"he": "^1.2.0",
"xpath-ts": "^1.3.13"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/he": "^1.1.0",
"@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/index.js",
"types": "./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/xslt"
}
}