aboutsummaryrefslogtreecommitdiff
path: root/node_modules/chrome-trace-event/package.json
blob: 956839e4d0f735f6dc212ee2aeb98896690b75c6 (plain)
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
{
  "name": "chrome-trace-event",
  "description": "A library to create a trace of your node app per Google's Trace Event format.",
  "license": "MIT",
  "version": "1.0.0",
  "author": "Trent Mick, Sam Saccone",
  "keywords": [
    "trace-event",
    "trace",
    "event",
    "trace-viewer",
    "google"
  ],
  "repository": {
    "type": "git",
    "url": "github.com:samccone/chrome-trace-event"
  },
  "main": "./dist/trace-event.js",
  "typings": "./dist/trace-event.d.ts",
  "dependencies": {
    "tslib": "^1.9.0"
  },
  "devDependencies": {
    "@types/node": "^9.6.5",
    "prettier": "^1.12.1",
    "tape": "4.8.0",
    "typescript": "^2.8.1"
  },
  "engines": {
    "node": ">=6.0"
  },
  "scripts": {
    "build": "tsc",
    "check_format": "prettier -l lib/** test/** examples/**",
    "test": "tape test/*.test.js"
  }
}