-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
81 lines (81 loc) · 2.65 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "install-local",
"version": "3.0.1",
"description": "A small module for installing local packages. Works for both npm >= 5 and older versions.",
"main": "dist/src/index.js",
"scripts": {
"all": "npm run clean && npm run build && npm run lint && npm run test",
"clean": "rimraf dist reports .stryker-tmp",
"build": "tsc -b",
"lint": "eslint --ignore-path .gitignore --ext .ts . && prettier --check .github/**/*.yml",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "mocha dist/test/unit/**/*.js",
"test:integration": "mocha --timeout 30000 dist/test/integration/**/*.js",
"test:mutation": "stryker run",
"start": "tsc -b -w",
"preversion": "npm run all",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"postversion": "npm publish && git push && git push --tags",
"release:patch": "npm version patch -m \"chore(release): %s\"",
"release:minor": "npm version minor -m \"chore(release): %s\"",
"release:major": "npm version major -m \"chore(release): %s\""
},
"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 <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nicojs/node-install-local/issues"
},
"engines": {
"node": ">=10"
},
"homepage": "https://github.com/nicojs/node-install-local#readme",
"devDependencies": {
"@stryker-mutator/core": "^4.0.0",
"@stryker-mutator/mocha-runner": "^4.0.0",
"@stryker-mutator/typescript-checker": "^4.0.0",
"@types/chai": "^4.2.13",
"@types/chai-as-promised": "7.1.3",
"@types/lodash.flatmap": "^4.5.6",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.8",
"@types/rimraf": "^3.0.0",
"@types/semver": "^7.3.4",
"@types/sinon": "^9.0.8",
"@types/sinon-chai": "^3.2.5",
"@types/uniqid": "^5.2.0",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"conventional-changelog-cli": "^2.1.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.1.3",
"prettier": "^2.1.2",
"semver": "^7.3.2",
"sinon": "^9.2.0",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.19",
"typescript": "^4.0.3"
},
"dependencies": {
"execa": "^4.0.3",
"lodash.flatmap": "^4.5.0",
"rimraf": "^3.0.2",
"uniqid": "^5.2.0"
}
}