-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 1.77 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
{
"name": "npm-get-version",
"private": false,
"version": "1.0.2",
"engines": {
"node": ">=6.10.0"
},
"description": "Utility to get the version of an npm package going back N versions from a specified tag.",
"main": "dist/lib/index.js",
"scripts": {
"clean": "rimraf dist",
"test-bare": "npm run compile && mocha ./dist/test/**/*.test.js",
"test": "nyc mocha --require ts-node/register --require source-map-support/register ./src/test/**/*.test.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"compile": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run clean && npm run compile",
"release": "standard-version"
},
"author": "Guy Lichtman",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/glicht/npm-get-version"
},
"keywords": [
"npm",
"version"
],
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/lodash": "^4.14.109",
"@types/mocha": "^5.2.0",
"@types/node": "^6.0.110",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"mocha": "^5.2.0",
"nyc": "^11.8.0",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.6",
"standard-version": "^4.3.0",
"ts-node": "^6.0.3",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"files": [
"dist/index.*",
"dist/lib/**",
"dist/bin/**",
"src/",
"*.md"
],
"bin": {
"npm-get-version": "./dist/bin/npm-get-version.js"
},
"typescript": {
"definition": "dist/lib/index.d.ts"
},
"typings": "dist/lib/index.d.ts",
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/lib/**"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html",
"text"
],
"all": true
}
}