-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
70 lines (70 loc) · 2.03 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
{
"name": "snyk-nodejs-lockfile-parser",
"description": "Generate a dep tree given a lockfile",
"main": "dist/index.js",
"bin": {
"parse-nodejs-lockfile": "./bin/index.js"
},
"scripts": {
"test": "npm run unit-test && npm run test:jest",
"unit-test": "tap --ts -Rspec ./test/lib/*.test.[tj]s --timeout=300 --no-check-coverage",
"test:jest": "jest --coverage --runInBand",
"lint": "eslint --color --cache '{lib,test}/**/*.{js,ts}' && prettier --check '{lib,test}/**/*.{js,ts}'",
"format": "prettier --write '{lib,test}/**/*.{js,ts,json}'",
"build": "tsc",
"build-watch": "tsc -w",
"prepare": "npm run build"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/snyk/nodejs-lockfile-parser.git"
},
"author": "snyk.io",
"license": "Apache-2.0",
"engines": {
"node": ">=10"
},
"files": [
"bin",
"dist"
],
"homepage": "https://github.com/snyk/nodejs-lockfile-parser#readme",
"dependencies": {
"@snyk/error-catalog-nodejs-public": "^5.16.0",
"@snyk/dep-graph": "^2.3.0",
"@snyk/graphlib": "2.1.9-patch.3",
"@yarnpkg/core": "^2.4.0",
"@yarnpkg/lockfile": "^1.1.0",
"dependency-path": "^9.2.8",
"event-loop-spinner": "^2.0.0",
"js-yaml": "^4.1.0",
"lodash.clonedeep": "^4.5.0",
"lodash.flatmap": "^4.5.0",
"lodash.isempty": "^4.4.0",
"lodash.topairs": "^4.3.0",
"micromatch": "^4.0.8",
"p-map": "^4.0.0",
"semver": "^7.6.0",
"snyk-config": "^5.0.0",
"tslib": "^1.9.3",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/node": "^16.11.66",
"@types/semver": "^7.3.6",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"tap": "^15.0.4",
"ts-jest": "^28.0.8",
"ts-node": "^8.10.2",
"typescript": "4.8.4"
},
"packageManager": "[email protected]"
}