-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.38 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
90
91
{
"name": "@dfordev/typescript-node-module-seed",
"version": "0.2.0",
"description": "Seed repo for new node modules using Typescript",
"main": "dist/index",
"typings": "dist/index",
"directories": {
"test": "test"
},
"scripts": {
"prepare": "npm run build",
"test": "./node_modules/.bin/mocha",
"coverage": "./node_modules/.bin/nyc npm test",
"cover": "npm run coverage",
"build": "npm run clean && tsc -p ./tsconfig.lib.json",
"show-coverage": "./node_modules/.bin/opn ./gen/coverage/index.html",
"show-test-report": "./node_modules/.bin/opn ./gen/test-report/mochawesome.html",
"report-coverage": "cat ./gen/coverage/lcov.info | coveralls",
"lint": "tslint \"src/**/*.ts\"",
"clean": "./node_modules/.bin/rimraf .nyc_output gen dist",
"release": "standard-version",
"release:alpha": "npm run release -- --prerelease alpha",
"release:beta": "npm run release -- --prerelease beta",
"git-publish": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git://github.com/scallacs/typescript-node-module-seed.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"seed",
"node",
"repo",
"new",
"projects",
"typescript"
],
"author": "Stephane Leonard <stephane@dfordev.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/scallacs/typescript-node-module-seed/issues"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mochawesome": "^3.0.2",
"nyc": "^11.2.1",
"opn-cli": "^3.1.0",
"rimraf": "^2.6.1",
"standard-version": "^4.3.0",
"ts-node": "^3.3.0",
"tslint": "^5.5.0",
"typescript": "^2.4.2"
},
"dependencies": {},
"nyc": {
"report-dir": "./gen/coverage",
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"src/*.spec.ts",
"src/**/*.spec.ts",
"typings",
"test/typings.d.ts"
],
"extension": [
".ts"
],
"require": [],
"reporter": [
"json",
"html",
"lcov"
],
"all": true,
"output": ""
},
"homepage": "https://github.com/scallacs/typescript-node-module-seed#readme"
}