forked from PeculiarVentures/xml-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.23 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@tokenscript/xml-core",
"version": "1.1.6",
"description": "`xml-core` is a set of classes that make it easier to work with XML within the browser and node.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/types/index.d.ts",
"directories": {
"test": "test"
},
"dependencies": {
"@xmldom/xmldom": "^0.9.0-beta.11",
"tslib": "^2.4.0",
"xpath.js": "^1.1.0"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.3",
"coveralls": "^3.1.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.77.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"scripts": {
"test": "mocha",
"upgrade": "yarn upgrade-interactive --latest",
"prepare": "npm run build",
"clear": "rimraf dist/",
"build": "npm run build:module && npm run build:types",
"build:module": "rollup -c",
"build:types": "tsc -p tsconfig.types.json",
"rebuild": "npm run clear && npm run build",
"lint": "tslint 'src/**/*.ts'",
"pub": "npm run pub:patch",
"pub:major": "npm version major",
"pub:minor": "npm version minor",
"pub:patch": "npm version patch",
"postpub": "git push --follow-tags",
"coverage": "nyc npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PeculiarVentures/xml-core.git"
},
"keywords": [
"xml"
],
"author": "microshine",
"license": "MIT",
"bugs": {
"url": "https://github.com/PeculiarVentures/xml-core.git/issues"
},
"homepage": "https://github.com/PeculiarVentures/xml-core.git#readme",
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text-summary",
"lcov"
]
},
"mocha": {
"require": "ts-node/register",
"extension": [
"ts"
],
"watch-files": [
"test/**/*.ts"
]
},
"resolutions": {
"ansi-regex": "^5.0.1",
"path-parse": "^1.0.7",
"browserslist": "^4.16.5",
"json-schema": "^0.4.0",
"minimist": "^1.2.6"
}
}