-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "integreat-adapter-xml",
"version": "1.0.2",
"description": "XML adapter for Integreat",
"author": "Kjell-Morten Bratsberg Thorsen <[email protected]>",
"license": "ISC",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./transformer.js": {
"import": "./dist/transformer.js",
"types": "./dist/transformer.d.ts"
}
},
"scripts": {
"test": "npm run build && c8 --reporter=text-summary ava --config ./ava-dist.config.cjs",
"test:watch": "npm run dev",
"dev": "ava --watch",
"build": "tsc",
"prepare": "npm run build",
"coverage": "c8 report",
"lint": "eslint --ext .ts src",
"verify": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/integreat-io/integreat-adapter-xml.git"
},
"bugs": {
"url": "https://github.com/integreat-io/integreat-adapter-xml/issues"
},
"homepage": "https://github.com/integreat-io/integreat-adapter-xml#readme",
"engines": {
"node": ">= 18"
},
"dependencies": {
"html-entities": "^2.4.0",
"sax": "^1.3.0"
},
"devDependencies": {
"@integreat/ts-dev-setup": "^5.0.0",
"@types/sax": "^1.2.5",
"integreat": "^1.3.6"
}
}