-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
51 lines (51 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
{
"name": "snyk-python-plugin",
"description": "Snyk CLI Python plugin",
"homepage": "https://github.com/snyk/snyk-python-plugin",
"repository": {
"type": "git",
"url": "https://github.com/snyk/snyk-python-plugin"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"build-tests": "tsc -p tsconfig-test.json",
"format:check": "prettier --check '{lib,test}/**/*.{js,ts}'",
"format": "prettier --write '{lib,test}/**/*.{js,ts}'",
"prepare": "npm run build",
"test": "npm run test:jest",
"test:jest": "jest",
"test:pysrc2": "cd pysrc; python -m unittest test_pip_resolve_py2 test_pipfile",
"test:pysrc3": "cd pysrc; python -m unittest test_pip_resolve_py3 test_pipfile",
"test:pysrc3_12": "cd pysrc; python -m unittest test_pip_resolve_py3_12 test_pipfile",
"lint": "npm run build-tests && npm run format:check && eslint --cache '{lib,test}/**/*.{js,ts}'"
},
"author": "snyk.io",
"license": "Apache-2.0",
"dependencies": {
"@snyk/cli-interface": "^2.11.2",
"@snyk/dep-graph": "^1.28.1",
"shescape": "1.6.1",
"snyk-poetry-lockfile-parser": "^1.6.1",
"tmp": "0.2.3"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/node": "^16.11.66",
"@types/tmp": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"cross-env": "^5.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^28.1.3",
"jest-diff": "^25.5.0",
"jest-junit": "^10.0.0",
"prettier": "^2.7.1",
"sinon": "^2.3.2",
"ts-jest": "^28.0.8",
"ts-node": "^8.10.2",
"typescript": "^4.8.4"
}
}