UNPKG

2.59 kBJSONView Raw
1{
2 "name": "stop-only",
3 "description": "Detects '.only' left in the code accidentally",
4 "version": "3.1.0",
5 "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
6 "bugs": "https://github.com/bahmutov/stop-only/issues",
7 "bin": {
8 "stop-only": "bin/stop-only.js"
9 },
10 "config": {
11 "pre-git": {
12 "commit-msg": "simple",
13 "pre-commit": [
14 "npm prune",
15 "npm run deps",
16 "npm test",
17 "node bin/stop-only.js --warn --folder src",
18 "git add src/*.js",
19 "npm run ban"
20 ],
21 "pre-push": [
22 "npm run stop-only",
23 "npm run license",
24 "npm run ban -- --all",
25 "npm run size"
26 ],
27 "post-commit": [],
28 "post-merge": []
29 }
30 },
31 "engines": {
32 "node": ">=6"
33 },
34 "files": [
35 "bin",
36 "src/*.js",
37 "!src/*-spec.js"
38 ],
39 "homepage": "https://github.com/bahmutov/stop-only#readme",
40 "keywords": [
41 "bdd",
42 "ci",
43 "cli",
44 "only",
45 "tdd",
46 "util"
47 ],
48 "license": "MIT",
49 "main": "src/",
50 "publishConfig": {
51 "registry": "http://registry.npmjs.org/"
52 },
53 "repository": {
54 "type": "git",
55 "url": "https://github.com/bahmutov/stop-only.git"
56 },
57 "scripts": {
58 "ban": "ban",
59 "deps": "deps-ok && dependency-check --no-dev .",
60 "issues": "git-issues",
61 "license": "license-checker --production --onlyunknown --csv",
62 "lint": "standard --verbose --fix src/*.js",
63 "prelint": "npm run pretty",
64 "pretest": "npm run lint",
65 "pretty": "prettier-standard 'src/*.js' 'bin/*.js'",
66 "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
67 "test": "npm run unit",
68 "unit": "mocha test/spec.js",
69 "semantic-release": "semantic-release",
70 "stop-only": "node bin/stop-only.js -f src --skip excluded",
71 "warn-only": "node bin/stop-only.js --warn -f src",
72 "travis-deploy-once": "travis-deploy-once"
73 },
74 "release": {
75 "analyzeCommits": {
76 "preset": "angular",
77 "releaseRules": [
78 {
79 "type": "break",
80 "release": "major"
81 }
82 ]
83 }
84 },
85 "devDependencies": {
86 "ban-sensitive-files": "1.9.2",
87 "dependency-check": "3.4.1",
88 "deps-ok": "1.4.1",
89 "dont-crack": "1.2.1",
90 "execa-wrap": "1.4.0",
91 "git-issues": "1.3.1",
92 "lazy-ass": "1.6.0",
93 "license-checker": "25.0.1",
94 "mocha": "5.2.0",
95 "pre-git": "3.17.1",
96 "prettier-standard": "9.1.1",
97 "semantic-release": "15.13.16",
98 "standard": "12.0.1"
99 },
100 "dependencies": {
101 "debug": "4.1.1",
102 "execa": "0.11.0",
103 "minimist": "1.2.0"
104 }
105}