-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 955 Bytes
/
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": "vs-parse",
"version": "3.1.2",
"description": "A parser for Visual Studio solutions and projects",
"repository": "stevenaw/vs-parse",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "mocha --timeout=3000",
"coverage": "nyc --reporter cobertura --reporter text npm run test",
"demo": "node samples/dependencyParsing",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"keywords": [
"visual studio",
"csproj",
"sln",
"solution",
"parser"
],
"author": {
"name": "Steven Weerdenburg"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"fs-extra": "^8.1.0",
"is-buffer": "^2.0.2",
"semver-utils": "^1.1.1",
"upath": "^1.1.0",
"xml-parser": "^1.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-string": "^1.5.0",
"mocha": "^7.2.0",
"mocha-junit-reporter": "^2.0.0",
"nyc": "^15.0.1"
}
}