{ "name": "typescript-ex", "version": "1.0.0", "description": "Simple typescript example using CloudEvents types", "repository": "https://github.com/cloudevents/sdk-javascript.git", "main": "build/src/index.js", "types": "build/src/index.d.ts", "files": [ "build/src" ], "license": "Apache-2.0", "keywords": [], "scripts": { "start": "node build/index.js", "test": "echo \"Error: no test specified\" && exit 1", "check": "gts check", "clean": "gts clean", "compile": "tsc -p .", "watch": "tsc -p . --watch", "fix": "gts fix", "prepare": "npm run compile", "pretest": "npm run compile", "posttest": "npm run check" }, "devDependencies": { "@types/node": "^14.14.10", "gts": "^3.0.3", "typescript": "~4.1.3" }, "dependencies": { "cloudevents": "~4.0.0" } }