-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.14 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.14 KB
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
{
"name": "snyk-module",
"description": "Snyk module helper",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/snyk/module.git"
},
"scripts": {
"build": "tsc",
"lint": "npm run format:check && eslint --cache '{lib,test}/**/*.{js,ts}'",
"test": "npm run lint && tap --node-arg=-r --node-arg=ts-node/register test/*.test.js -R spec --timeout=60",
"format:check": "prettier --check '{lib,test}/**/*.{js,ts}'",
"format": "prettier --write '{lib,test}/**/*.{js,ts}'",
"prepare": "npm run build"
},
"author": "Remy Sharp",
"license": "Apache-2.0",
"devDependencies": {
"@types/hosted-git-info": "^3.0.0",
"@types/node": "^8.10.61",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"benny": "^3.6.14",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"prettier": "^1.19.1",
"tap": "^14.10.7",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"dependencies": {
"debug": "^4.1.1",
"hosted-git-info": "^4.0.2"
}
}