-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.06 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
41
{
"name": "@devlop/tap",
"version": "2.0.0",
"description": "A JavaScript implementation of Laravel's tap helper",
"keywords": [],
"author": "Johan Rosenson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/devlop/tap.git"
},
"bugs": {
"url": "https://github.com/devlop/tap/issues"
},
"homepage": "https://github.com/devlop/tap",
"main": "dist/tap.js",
"types": "dist/tap.d.ts",
"files": [
"dist/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch --preserveWatchOutput",
"prepack": "npm run build",
"prepublishOnly": "npm run build",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.9",
"babel-jest": "^27.3.1",
"jest": "^27.3.1"
}
}