Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « get-package-type « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dcb0ea8e879ae235a01a84d4216457e07a8bcb03 (plain)
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
{
	"name": "get-package-type",
	"version": "0.1.0",
	"description": "Determine the `package.json#type` which applies to a location",
	"type": "module",
	"main": "index.cjs",
	"exports": "./index.cjs",
	"scripts": {
		"pretest": "if-ver -ge 10 || exit 0; cfware-lint .",
		"tests-only": "nyc -s node test.cjs",
		"test": "npm run -s tests-only",
		"posttest": "nyc report --check-coverage"
	},
	"engines": {
		"node": ">=8.0.0"
	},
	"author": "Corey Farrell",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/cfware/get-package-type.git"
	},
	"bugs": {
		"url": "https://github.com/cfware/get-package-type/issues"
	},
	"homepage": "https://github.com/cfware/get-package-type#readme",
	"dependencies": {},
	"devDependencies": {
		"@cfware/lint": "^1.4.3",
		"@cfware/nyc": "^0.7.0",
		"if-ver": "^1.1.0",
		"libtap": "^0.3.0",
		"nyc": "^15.0.1"
	}
}