-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "@journeyapps/domparser",
"description": "Basic XML DOM parsing",
"version": "0.4.1",
"license": "MIT",
"main": "lib/node.js",
"browser": "lib/index.js",
"scripts": {
"build": "tsc",
"test": "ts-node --project ./tsconfig.test.json node_modules/jasmine/bin/jasmine test/*_spec.ts",
"test:browsers": "karma start --single-run",
"test:sax": "tap sax-test/*.js",
"pretty": "prettier --write '**/*.{ts,js}'",
"lint": "prettier --check '**/*.{ts,js}'",
"benchmark": "node benchmark/benchmark.js"
},
"dependencies": {},
"devDependencies": {
"@types/jasmine": "^3.4.0",
"@types/node": "^12.7.2",
"@types/xmldom": "^0.1.29",
"benchmark": "^2.1.4",
"fast-xml-parser": "^3.12.19",
"jasmine": "~3.4.0",
"karma": "^5.2.2",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^4.0.1",
"karma-spec-reporter": "^0.0.32",
"karma-typescript": "^5.1.0",
"prettier": "^2.1.1",
"tap": "^14.6.1",
"ts-node": "^8.3.0",
"typescript": "^4.0.2",
"xmldom": "^0.1.27"
},
"files": [
"lib",
"types.d.ts",
"types.js"
]
}