1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "name": "stack-utils",
- "version": "1.0.5",
- "publishConfig": {
- "tag": "v1-legacy"
- },
- "description": "Captures and cleans stack traces",
- "license": "MIT",
- "repository": "tapjs/stack-utils",
- "author": {
- "name": "James Talmage",
- "email": "james@talmage.io",
- "url": "github.com/jamestalmage"
- },
- "engines": {
- "node": ">=8"
- },
- "scripts": {
- "test": "tap --no-esm --100",
- "preversion": "npm test",
- "postversion": "npm publish",
- "prepublishOnly": "git push origin --follow-tags"
- },
- "files": [
- "index.js"
- ],
- "dependencies": {
- "escape-string-regexp": "^2.0.0"
- },
- "devDependencies": {
- "bluebird": "^3.7.2",
- "coveralls": "^3.0.9",
- "nested-error-stacks": "^2.1.0",
- "pify": "^4.0.1",
- "q": "^1.5.1",
- "tap": "^14.10.8"
- }
- }
|