This repository has been archived by the owner on Dec 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.78 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "scrolex",
"version": "0.0.27",
"description": "Execute commands, scroll back the stdout & stderr, prefix by user-defined categories",
"main": "lib/Scrolex.js",
"engines": {
"node": ">=0.10.48"
},
"jest": {
"verbose": true,
"testPathDirs": [
"lib/"
]
},
"scripts": {
"build:watch": "babel src --watch --source-maps --out-dir lib",
"build": "babel src --source-maps --out-dir lib",
"fix": "eslint . --fix",
"jest:update": "env DEBUG=scrolex:* NODE_ENV=test jest --updateSnapshot",
"jest": "env DEBUG=scrolex:* NODE_ENV=test jest",
"lint": "eslint .",
"demo": "./scripts/demo1.sh",
"npublish": "npm publish",
"playground": "env DEBUG=*:* babel-node src/playground.js",
"push": "git push && git push --tags",
"release:major": "env SEMANTIC=major npm run release",
"release:minor": "env SEMANTIC=minor npm run release",
"release:patch": "env SEMANTIC=patch npm run release",
"release": "npm version ${SEMANTIC:-patch} -m \"Release %s\" && npm-run-all build push npublish",
"test:update": "npm-run-all build jest:update",
"test:watcher": "npm test -- --watch",
"test": "npm-run-all build jest",
"upgrade:modules": "next-update --keep true --tldr"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kvz/scrolex.git"
},
"author": "",
"license": "MIT",
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/kvz/scrolex/issues"
},
"dependencies": {
"chalk": "1.1.3",
"cli-spinners": "0.1.2",
"cli-truncate": "0.2.1",
"depurar": "0.3.0",
"figures": "1.7.0",
"is-travis": "1.0.0",
"lodash": "4.17.21",
"log-symbols": "1.0.2",
"log-update": "1.0.2",
"os-tmpdir": "1.0.2",
"slice-ansi": "0.0.4",
"spawn-sync": "1.0.15",
"strip-ansi": "3.0.1",
"uuid": "3.0.1"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.21.0",
"babel-eslint": "7.1.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-es6-promise": "1.1.0",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-async-generator-functions": "6.17.0",
"babel-plugin-transform-async-to-generator": "6.16.0",
"babel-plugin-transform-object-assign": "6.8.0",
"babel-plugin-transform-proto-to-assign": "6.9.0",
"babel-polyfill": "6.9.1",
"babel-preset-es2015": "6.18.0",
"babel-preset-es2015-loose": "7.0.0",
"babel-preset-stage-3": "6.16.0",
"babel-register": "6.9.0",
"eslint": "4.18.2",
"eslint-config-standard": "6.2.1",
"eslint-plugin-promise": "3.4.0",
"eslint-plugin-standard": "2.0.1",
"fakefile": "0.0.8",
"jest": "18.1.0",
"next-update": "1.5.1",
"npm-run-all": "4.0.0"
},
"homepage": "https://github.com/kvz/scrolex#readme"
}