forked from DesignLiquido/xslt-processor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.96 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
{
"name": "xslt-processor",
"version": "0.10.0",
"description": "a JavaScript XSLT Processor",
"main": "dist/xslt-processor.js",
"module": "src/index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup src/index.js -c -f cjs -o dist/xslt-processor.js",
"build_tests": "npm run build_dom_unittests && npm run build_xmltoken_unittests && npm run build_xpath_unittests && npm run build_xpath_unittests2 && npm run build_xslt_unittest",
"build_dom_unittests": "rollup tests_src/dom_unittest.js -c -f iife -o tests_dist/dom_unittest.js",
"build_xmltoken_unittests": "rollup tests_src/xmltoken_unittest.js -c -f iife -o tests_dist/xmltoken_unittest.js",
"build_xpath_unittests": "rollup tests_src/xpath_unittest.js -c -f iife --output.name xpath_unittest -o tests_dist/xpath_unittest.js",
"build_xpath_unittests2": "rollup tests_src/xpath_unittest2.js -c -f iife -o tests_dist/xpath_unittest2.js",
"build_xslt_unittest": "rollup tests_src/xslt_unittest.js -c -f iife -o tests_dist/xslt_unittest.js",
"build_test": "npm run build_tests && npm run build_xpath_script && npm run build_xslt_script",
"build_xpath_script": "rollup test_src/xpath_script.js -c -f iife -o test_dist/xpath_script.js",
"build_xslt_script": "rollup test_src/xslt_script.js -c -f iife -o test_dist/xslt_script.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fiduswriter/xslt-processor.git"
},
"keywords": [
"xslt"
],
"author": "Johannes Wilm",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/fiduswriter/xslt-processor/issues"
},
"homepage": "https://github.com/fiduswriter/xslt-processor#readme",
"devDependencies": {
"rollup": "^0.57.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-commonjs": "^9.1.2"
},
"dependencies": {
"he": "^1.1.1"
}
}