-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 909 Bytes
/
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
{
"name": "multihash-maker",
"version": "1.1.0",
"description": "Multihash Maker is a simple way to create multihashes with no external dependencies.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "jest",
"dev": "npx nodemon ./lib/index.ts",
"lint": "ts-standard --fix ./lib"
},
"author": "Adam Shea",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"babel-jest": "^29.3.1",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.2",
"typescript": "^4.9.4"
},
"contributors": [
"Adam Shea (https://github.com/Adam-Shea)"
],
"repository": "https://github.com/Adam-Shea/multihash-maker.git"
}