UNPKG

2.42 kBJSONView Raw
1{
2 "name": "@semantic-release/last-release-npm",
3 "description": "Determine the version of the last release via the npm registry",
4 "version": "2.0.1",
5 "author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
6 "bugs": {
7 "url": "https://github.com/semantic-release/last-release-npm/issues"
8 },
9 "config": {
10 "commitizen": {
11 "path": "cz-conventional-changelog"
12 }
13 },
14 "dependencies": {
15 "@semantic-release/error": "^2.0.0",
16 "npm-registry-client": "^8.4.0",
17 "npmlog": "^4.0.0"
18 },
19 "devDependencies": {
20 "ava": "^0.22.0",
21 "codecov": "^2.3.0",
22 "commitizen": "^2.9.6",
23 "cz-conventional-changelog": "^2.0.0",
24 "eslint": "^4.7.0",
25 "eslint-config-prettier": "^2.5.0",
26 "eslint-config-standard": "^10.2.1",
27 "eslint-plugin-import": "^2.7.0",
28 "eslint-plugin-node": "^5.1.1",
29 "eslint-plugin-prettier": "^2.3.0",
30 "eslint-plugin-promise": "^3.5.0",
31 "eslint-plugin-standard": "^3.0.1",
32 "lodash": "^4.2.1",
33 "nock": "^9.0.0",
34 "nyc": "^11.2.1",
35 "prettier": "^1.7.0",
36 "rimraf": "^2.4.2",
37 "semantic-release": "^8.0.0"
38 },
39 "engines": {
40 "node": ">=4"
41 },
42 "eslintConfig": {
43 "extends": [
44 "standard",
45 "prettier"
46 ],
47 "plugins": [
48 "prettier"
49 ],
50 "rules": {
51 "prettier/prettier": 2
52 }
53 },
54 "files": [
55 "index.js"
56 ],
57 "homepage": "https://github.com/semantic-release/last-release-npm#readme",
58 "keywords": [
59 "npm",
60 "registry",
61 "semantic-release",
62 "version"
63 ],
64 "license": "MIT",
65 "main": "index.js",
66 "nyc": {
67 "lines": 100,
68 "statements": 100,
69 "functions": 100,
70 "branches": 100,
71 "include": [
72 "index.js"
73 ],
74 "reporter": [
75 "lcov",
76 "text"
77 ],
78 "all": true
79 },
80 "prettier": {
81 "printWidth": 120,
82 "singleQuote": true,
83 "bracketSpacing": false,
84 "trailingComma": "es5"
85 },
86 "publishConfig": {
87 "access": "public"
88 },
89 "repository": {
90 "type": "git",
91 "url": "https://github.com/semantic-release/last-release-npm.git"
92 },
93 "scripts": {
94 "clean": "rimraf coverage && rimraf .nyc_output",
95 "cm": "git-cz",
96 "codecov": "codecov",
97 "coverage": "nyc check-coverage",
98 "lint": "eslint .",
99 "pretest": "npm run clean && npm run lint",
100 "semantic-release": "semantic-release pre && npm publish && semantic-release post",
101 "test": "nyc ava -v"
102 }
103}