-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.28 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.28 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "install-local",
"version": "4.1.0",
"description": "A small module for installing local packages. Works for both npm >= 5 and older versions.",
"main": "dist/src/index.js",
"type": "module",
"scripts": {
"all": "npm run clean && npm run build && npm run lint && npm run test",
"clean": "rimraf -g dist reports .stryker-tmp \"?(src|test)/*.tsbuildinfo\"",
"build": "tsc -b",
"lint": "npm run lint:eslint && npm run lint:format",
"lint:eslint": "eslint .",
"lint:format": "prettier --check .",
"lint:format:fix": "node --run lint:format -- --write",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "mocha \"test/unit/**/*.ts\"",
"test:integration": "mocha --timeout 30000 \"test/integration/**/*.ts\"",
"test:mutation": "stryker run",
"start": "tsc -b -w",
"preversion": "npm run all",
"release": "commit-and-tag-version"
},
"bin": {
"install-local": "bin/install-local"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicojs/node-install-local.git"
},
"keywords": [
"npm",
"install",
"local",
"yarn"
],
"author": "Nico Jansen <jansennico@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nicojs/node-install-local/issues"
},
"engines": {
"node": ">=20"
},
"homepage": "https://github.com/nicojs/node-install-local#readme",
"devDependencies": {
"@eslint/js": "^9.38.0",
"@stryker-mutator/core": "^9.2.0",
"@stryker-mutator/mocha-runner": "^9.2.0",
"@stryker-mutator/typescript-checker": "^9.2.0",
"@types/chai": "^5.2.2",
"@types/chai-as-promised": "8.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "^24.8.1",
"@types/semver": "^7.7.1",
"@types/sinon": "^17.0.4",
"@types/sinon-chai": "^4.0.0",
"@types/uniqid": "^5.3.4",
"chai": "^6.2.0",
"chai-as-promised": "^8.0.2",
"commit-and-tag-version": "^12.6.0",
"eslint": "^9.38.0",
"eslint-plugin-chai-friendly": "^1.1.0",
"mocha": "^11.7.4",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"semver": "^7.7.3",
"sinon": "^21.0.0",
"sinon-chai": "^4.0.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1"
},
"dependencies": {
"execa": "^9.6.0",
"uniqid": "^5.4.0"
}
}