1 | {
|
2 | "name": "ts-helpers",
|
3 | "version": "1.1.2",
|
4 | "description": "Typescript helpers for compiling typescript while specifying `--noEmitHelpers` within your `tsconfig.json`. Cross platform ( Node/Browser/WebWorker )",
|
5 | "main": "index.js",
|
6 | "scripts": {
|
7 | "start": "tsc -w",
|
8 | "pretest": "tsc",
|
9 | "test": "mocha index.test.js",
|
10 | "test:live": "npm start & npm test -- -w",
|
11 | "prepublish": "npm run typings -- install && tsc",
|
12 | "changelog": "conventional-changelog -p angular -i CHANGELOG.md -w",
|
13 | "typings": "typings"
|
14 | },
|
15 | "bugs": {
|
16 | "url": "https://github.com/ngParty/ts-helpers/issues"
|
17 | },
|
18 | "homepage": "https://github.com/ngParty/ts-helpers#readme",
|
19 | "repository": {
|
20 | "type": "git",
|
21 | "url": "git+https://github.com/ngParty/ts-helpers.git"
|
22 | },
|
23 | "keywords": [
|
24 | "typescript",
|
25 | "emit-helpers",
|
26 | "payload"
|
27 | ],
|
28 | "author": "Martin Hochel <hochelmartin@gmail.com>",
|
29 | "license": "MIT",
|
30 | "peerDependencies": {
|
31 | "typescript": ">=1.8.0 <2.1.0 || >=1.9.0-dev || >=2.0.0-dev || || >=2.1.0-dev"
|
32 | },
|
33 | "devDependencies": {
|
34 | "chai": "3.5.0",
|
35 | "conventional-changelog": "1.1.0",
|
36 | "ghooks": "1.0.1",
|
37 | "mocha": "2.4.5",
|
38 | "typescript": "1.8.10",
|
39 | "typings": "0.7.12",
|
40 | "validate-commit-msg": "2.0.0"
|
41 | },
|
42 | "config": {
|
43 | "ghooks": {
|
44 | "pre-commit": "tsc && npm test",
|
45 | "commit-msg": "validate-commit-msg"
|
46 | },
|
47 | "validate-commit-msg": {
|
48 | "warnOnFail": true,
|
49 | "maxSubjectLength": 120
|
50 | }
|
51 | }
|
52 | }
|