-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
65 lines (65 loc) · 1.55 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
{
"name": "pom-parser",
"version": "1.2.0",
"description": "A parser for the Java/Maven pom.xml files.",
"license": "MIT",
"source": "lib/index.ts",
"main": "dist/index.umd.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.modern.module.js",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.modern.js"
},
"contributors": [
{
"name": "Niti Singhal",
"email": "niti_singhal@intuit.com",
"url": "https://nitisinghal.com"
},
{
"name": "Marcello de Sales",
"email": "Marcello_deSales@intuit.com",
"url": "https://linkedin.com/in/marcellodesales"
}
],
"scripts": {
"test": "nyc mocha --loader=ts-node/esm -r ts-node/register test/**/*.spec.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "microbundle",
"dev": "microbundle watch"
},
"dependencies": {
"traverse": "^0.6.7",
"typescript": "^5.1.6",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/traverse": "^0.6.32",
"@types/xml2js": "^0.4.11",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"microbundle": "^0.15.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1"
},
"repository": {
"type": "git",
"url": "git@github.com:intuit/node-pom-parser.git"
},
"keywords": [
"java",
"pom",
"pom.xml",
"parser",
"maven",
"xml2js",
"nexus"
]
}