-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
{
"name": "vessel-node",
"version": "1.0.1",
"description": "Vessel utilities",
"types": "./types/index.d.ts",
"main": "./dist/index.js",
"exports": {
"require": "./dist/index.js",
"import": "./module.mjs"
},
"files": [
"dist/**/*",
"types/**/*",
"module.mjs"
],
"repository": {
"type": "git",
"url": "git://github.com/vesselpassport/vessel-node.git"
},
"scripts": {
"build": "rm -rf dist types && babel lib --out-dir dist --extensions '.ts' && tsc --declaration --outDir types --emitDeclarationOnly",
"lint": "eslint --fix lib tests",
"lint:check": "eslint lib tests",
"test": "jest"
},
"author": "Vessel",
"bugs": {
"url": "git://github.com/vesselpassport/vessel-node/issues"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/crypto-js": "^4.1.1",
"@types/elliptic": "^6.4.14",
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^15.14.9",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.4",
"prettier": "2.4.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"dependencies": {
"crypto-js": "^4.1.1",
"elliptic": "^6.5.4",
"jsonwebtoken": "^8.5.1"
},
"homepage": "https://github.com/vesselpassport/vessel-node#readme"
}