forked from intuit/node-pom-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.28 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
{
"name": "pom-parser",
"version": "1.2.0",
"description": "A parser for the Java/Maven pom.xml files.",
"license": "MIT",
"source": "lib/index.js",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"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",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "microbundle",
"dev": "microbundle watch"
},
"dependencies": {
"traverse": "^0.6.7",
"xml2js": "^0.4.23"
},
"devDependencies": {
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"microbundle": "^0.15.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0"
},
"repository": {
"type": "git",
"url": "git@github.com:intuit/node-pom-parser.git"
},
"keywords": [
"java",
"pom",
"pom.xml",
"parser",
"maven",
"xml2js",
"nexus"
]
}