-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.41 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
{
"name": "@anandchowdhary/node.ts",
"version": "1.1.1",
"description": "Opinionated starter for Node.js + TypeScript libraries",
"main": "dist/index.js",
"bin": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test-report": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test-without-reporting": "jest --coverage",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/AnandChowdhary/node.ts.git"
},
"keywords": [
"node.js",
"typescript",
"javascript",
"library"
],
"author": "Anand Chowdhary <mail@anandchowdhary.com>",
"engines": {
"node": ">=10.0.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AnandChowdhary/node.ts/issues"
},
"homepage": "https://anandchowdhary.github.io/node.ts/",
"dependencies": {},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.8",
"@types/node": "^14.0.27",
"coveralls": "^3.1.0",
"jest": "^26.2.1",
"semantic-release": "^17.1.1",
"semantic-release-gitmoji": "^1.3.4",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"jest": {
"roots": [
"<rootDir>"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"ts",
"json"
]
}
}