-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "xjslt",
"version": "0.1.0",
"description": "xslt 2 in javascript",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc && npm link",
"build-preprocessors": "rm src/preprocess/*js && bash -c \"for n in src/preprocess/*xsl ; do xjslt compile --standalone \\$n \\${n/xsl/js} ; done\" && prettier -w src/preprocess/",
"test": "jest --coverage --verbose",
"check": "jest && prettier -c src/ test/",
"prepare": "tsc"
},
"exports": "./dist/xjslt.js",
"bin": {
"xjslt": "./dist/cli.js"
},
"repository": {
"type": "git",
"url": "[email protected]:egh/xjslt.git"
},
"author": "Erik Hetzner",
"license": "MIT",
"homepage": "https://github.com/egh/xjslt",
"devDependencies": {
"@types/jest": "*",
"jest": "*",
"jest-simple-dot-reporter": "*",
"ts-jest": "*",
"ts-node": "*",
"typescript": "*"
},
"dependencies": {
"@types/estree": "*",
"acorn": "*",
"acorn-jsx": "*",
"astring": "*",
"commander": "*",
"fontoxpath": "*",
"slimdom": "*",
"webpack": "*"
}
}