-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.29 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "packsmoke",
"version": "0.1.0",
"description": "Test the npm package users will actually install, not just the code in your repository.",
"type": "module",
"bin": {
"packsmoke": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Pavithran-R-A/packsmoke.git"
},
"bugs": {
"url": "https://github.com/Pavithran-R-A/packsmoke/issues"
},
"homepage": "https://github.com/Pavithran-R-A/packsmoke#readme",
"scripts": {
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsc",
"dev": "tsc --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepack": "npm run build"
},
"keywords": [
"npm",
"package",
"pack",
"tarball",
"cli",
"smoke-test",
"validation",
"release"
],
"license": "MIT",
"engines": {
"node": ">=22",
"npm": ">=11"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/node": "^22.15.3",
"eslint": "^9.29.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1",
"vitest": "^3.2.4"
}
}