This repository has been archived by the owner on Aug 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
68 lines (68 loc) · 2.13 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
{
"name": "oss-mariner",
"version": "0.9.0-beta",
"description": "A node.js library for analyzing open source library dependencies",
"main": "dist/src/mariner/index.js",
"types": "dist/src/mariner/index.d.ts",
"author": "",
"license": "Apache-2.0",
"scripts": {
"start": "node dist/examples/runExample.js",
"test": "jest",
"check": "tsc -noEmit true --project tsconfig.json",
"lint": "eslint src/ --ext .js,.ts",
"lint:fix": "eslint src/ --fix --ext .js,.ts",
"build": "tsc",
"prepublish": "tsc",
"NOTYET-prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"NOTYET-version": "npm run format && git add -A src",
"NOTYET-postversion": "git push && git push --tags",
"prepare": "npm run build",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"@octokit/graphql": "^5.0.0",
"@octokit/rest": "^19.0.7",
"@types/luxon": "^3.0.0",
"axios": "^0.27.2",
"html-entities": "^2.3.3",
"luxon": "^3.0.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org "
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.6.3",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^28.1.3",
"nock": "^13.3.1",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"keywords": [
"nodejs",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/indeedeng/mariner.git"
},
"bugs": {
"url": "https://github.com/indeedeng/mariner/issues"
},
"homepage": "https://github.com/indeedeng/mariner/blob/master/README.md",
"files": [
"/dist/src/*"
]
}