forked from kripken/xml.js
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
{
"name": "xmllint-wasm",
"version": "5.0.0-rc.0",
"description": "Fork of https://www.npmjs.com/package/xmllint with some updates",
"main": "index-node.js",
"browser": "index-browser.mjs",
"directories": {
"test": "test"
},
"scripts": {
"test": "node test/test.js",
"lint": "eslint src",
"check-types": "./typings-test/run-typings-test.sh",
"build": "./script/clean && ./script/run-with-emscripten ./script/libxml2 && ./script/run-with-emscripten ./script/compile"
},
"repository": {
"type": "git",
"url": "https://github.com/noppa/xmllint-wasm"
},
"author": "noppa",
"contributors": [
"kripken",
"sterpe",
"noppa"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/noppa/xmllint-wasm/issues"
},
"files": [
"index-browser.mjs",
"index-node.js",
"xmllint-browser.mjs",
"xmllint-node.js",
"xmllint.wasm",
"index-browser.d.ts",
"index-browser.mjs.flow",
"index-node.d.ts",
"index-node.js.flow"
],
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-transform-flow-strip-types": "^7.19.0",
"@types/node": "20.12.7",
"eslint": "8.7.0",
"flow-bin": "^0.172.0",
"typescript": "5.4.5"
},
"peerDependencies": {
"@types/node": ">=14"
},
"engines": {
"node": ">=14.17"
}
}