-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.66 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
{
"name": "snyk-poetry-lockfile-parser",
"description": "Generate a dep graph given poetry.lock and pyproject.toml files",
"homepage": "https://github.com/snyk/snyk-poetry-lockfile-parser#readme",
"repository": {
"type": "git",
"url": "https://github.com/snyk/snyk-poetry-lockfile-parser"
},
"author": "snyk.io",
"license": "Apache-2.0",
"engines": {
"node": ">=8"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"format:check": "prettier --check '{lib,test}/**/*.{js,ts,json,yml}'",
"format": "prettier --write '{lib,test}/**/*.{js,ts,json,yml}'",
"lint": "npm run format:check && npm run lint:eslint",
"lint:eslint": "eslint --color --cache 'lib/**/*.{js,ts}'",
"test": "npm run test:unit",
"test:unit": "jest",
"test:coverage": "jest --coverage",
"test:watch": "tsc-watch --onSuccess 'npm run test:unit'",
"build": "tsc",
"build-watch": "tsc -w",
"prepare": "npm run build"
},
"dependencies": {
"@snyk/error-catalog-nodejs-public": "^4.0.1",
"@iarna/toml": "^2.2.5",
"@snyk/cli-interface": "^2.9.2",
"@snyk/dep-graph": "^2.3.0",
"debug": "^4.2.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@types/babel__traverse": "7.0.4",
"@types/debug": "^4.1.5",
"@types/jest": "^25.2.3",
"@types/node": "^14",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^25.5.4",
"prettier": "^2.0.5",
"ts-jest": "^25.5.1",
"ts-node": "^8.10.1",
"tsc-watch": "^4.2.7",
"typescript": "^3.9.3"
}
}