forked from jeffijoe/typesync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.72 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
92
93
94
95
96
97
98
99
100
{
"name": "typesync",
"version": "0.7.0",
"description": "Install missing TypeScript typings for your dependencies.",
"engines": {
"node": ">=10.0.0"
},
"files": [
"lib",
"bin"
],
"bin": {
"typesync": "./bin/typesync"
},
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"test": "jest",
"lint": "tslint --project tsconfig.json --fix 'src/**/*.ts' && tsc --noEmit && yarn format",
"format": "prettier --write 'src/**/*.ts'",
"lint:watch": "nodemon --exec npm run lint -e ts,js",
"cover": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"build": "rimraf lib && tsc -p tsconfig.build.json --sourceMap --declaration",
"run-cli": "npm run build && node bin/typesync",
"precommit": "lint-staged",
"do:publish": "npm run lint && npm run cover && npm run build && npm publish",
"release:patch": "npm version patch && npm run do:publish && git push --follow-tags",
"release:minor": "npm version minor && npm run do:publish && git push --follow-tags",
"release:prerelease": "npm version prerelease && npm run do:publish && git push --follow-tags"
},
"lint-staged": {
"*.ts": [
"tslint --project tsconfig.json --fix",
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeffijoe/typesync.git"
},
"author": "Jeff Hansen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeffijoe/typesync/issues"
},
"homepage": "https://github.com/jeffijoe/typesync#readme",
"dependencies": {
"awilix": "^4.2.2",
"axios": "^0.19.0",
"chalk": "^4.0.0",
"detect-indent": "^6.0.0",
"glob": "^7.1.4",
"ora": "^4.0.4",
"semver": "^7.3.2"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^25.2.3",
"@types/prettier": "^2.0.1",
"@types/rimraf": "^3.0.0",
"@types/semver": "^7.2.0",
"coveralls": "^3.0.6",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.0.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.5.3"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**",
"!src/cli-util.ts",
"!src/cli.ts",
"!src/fakes.ts",
"!src/types.ts"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"/lib/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}