-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.4 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.4 KB
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
{
"name": "tsplus",
"version": "0.2.0",
"description": "TypeScript project boilerplate with complete test suite, continuous integration, and coverage for Node.JS",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepublish": "tsc",
"test": "nyc mocha -r ts-node/register test/**/*.spec.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "tsc",
"start": "node dist/index.js",
"app": "ts-node src/index.ts",
"dev": "nodemon --watch \"src/**/*.ts\" --exec \"ts-node\" src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adzil/tsplus.git"
},
"keywords": [
"typescript",
"boilerplate",
"test",
"continuous-integration",
"coverage"
],
"author": "Fadhli Dzil Ikram",
"license": "MIT",
"bugs": {
"url": "https://github.com/adzil/tsplus/issues"
},
"homepage": "https://github.com/adzil/tsplus#readme",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chai-as-promised": "0.0.29",
"@types/mocha": "^2.2.33",
"@types/node": "^6.0.51",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "^2.11.15",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"nyc": "^10.0.0",
"ts-node": "^1.7.0",
"typescript": "^2.0.10"
},
"nyc": {
"extension": [
".ts"
],
"reporter": [
"lcov",
"text-summary"
]
}
}