generated from AnandChowdhary/node.ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.56 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
{
"name": "eject-dependencies",
"version": "1.2.0",
"description": "Eject npm dependencies to your source code",
"main": "dist/index.js",
"bin": "dist/cli.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/eject-dependencies.git"
},
"keywords": [
"node.js",
"typescript",
"javascript",
"library",
"dependencies",
"eject"
],
"author": "Anand Chowdhary <mail@anandchowdhary.com>",
"engines": {
"node": ">=10.0.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AnandChowdhary/eject-dependencies/issues"
},
"homepage": "https://anandchowdhary.github.io/eject-dependencies/",
"dependencies": {
"fast-glob": "^3.2.2",
"fs-extra": "^9.0.0"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/fs-extra": "^8.1.0",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.2",
"coveralls": "^3.0.9",
"jest": "^25.1.0",
"semantic-release": "^17.0.4",
"semantic-release-gitmoji": "^1.3.3",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3",
"yargs": "^15.3.1"
},
"jest": {
"roots": [
"<rootDir>"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"ts",
"json"
]
}
}