UNPKG

1.83 kBJSONView Raw
1{
2 "name": "@jimmyboh/playbook",
3 "version": "0.10.1",
4 "description": "A simple tool for running multiple projects at once.",
5 "main": "index.js",
6 "bin": {
7 "pb": "./dist/bin/pb.js",
8 "playbook": "./dist/bin/pb.js"
9 },
10 "scripts": {
11 "clean": "rimraf ./dist/** ./coverage",
12 "build": "tsc",
13 "watch": "concurrently npm:watch:*",
14 "watch:build": "tsc --watch",
15 "watch:test": "ava --watch",
16 "test": "tsc && nyc --color -a ava -v",
17 "coverage": "nyc report --reporter=text-lcov | coveralls",
18 "preversion": "npm test",
19 "version": "git add -A",
20 "postversion": "git push && git push --tags && npm publish --access=public"
21 },
22 "repository": {
23 "type": "git",
24 "url": "git+https://github.com/JimmyBoh/playbook.git"
25 },
26 "author": "Jim Buck <jim@jimmyboh.com>",
27 "license": "GPL-3.0",
28 "bugs": {
29 "url": "https://github.com/JimmyBoh/playbook/issues"
30 },
31 "homepage": "https://github.com/JimmyBoh/playbook#readme",
32 "devDependencies": {
33 "@types/conf": "^1.4.0",
34 "@types/minimist": "^1.2.0",
35 "@types/node": "^10.9.4",
36 "@types/pify": "^3.0.2",
37 "@types/update-notifier": "^2.2.0",
38 "ava": "^0.25.0",
39 "concurrently": "^4.0.1",
40 "coveralls": "^3.0.2",
41 "nyc": "^13.0.1",
42 "rimraf": "^2.6.2",
43 "typescript": "^3.0.3"
44 },
45 "dependencies": {
46 "ansi-escapes": "^3.1.0",
47 "chalk": "^2.4.1",
48 "conf": "^2.0.0",
49 "fs-jetpack": "^2.1.0",
50 "update-notifier": "^2.5.0",
51 "vorpal": "^1.12.0"
52 },
53 "ava": {
54 "files": [
55 "./dist/**/*.spec.js"
56 ],
57 "source": [
58 "./dist/**/*.js"
59 ]
60 },
61 "nyc": {
62 "include": [
63 "dist/**/*.js"
64 ],
65 "exclude": [
66 "dist/**/*.spec.js",
67 "dist/**/*.d.ts",
68 "dist/index.js",
69 "dist/bin/*",
70 "coverage/**",
71 "node_modules/**"
72 ]
73 }
74}