forked from ronp001/ts-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.83 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
{
"name": "@ronp001/ts-utils",
"version": "4.0.1",
"description": "miscellaneous typescript modules",
"repository": "http://github.com/ronp001/ts-utils",
"author": "Ron Perry",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf dist/",
"relink": "yarn unlink && yarn link",
"test": "jest",
"build": "tsc",
"tsc-version": "tsc --version",
"build:production": "yarn clean; yarn build; yarn test",
"test:watch": "jest --watch",
"nextver": "yarn version --patch",
"preversion": "yarn build:production",
"postversion": "git checkout -b ${npm_package_version:?} && git push --set-upstream origin ${npm_package_version:?}",
"finish_publishing": "git push --tags && yarn publish . --tag $npm_package_version && git push"
},
"files": [
"dist/*"
],
"resolutions": {
"minimist": ">0.2.1",
"acorn": ">=5.7.4",
"kind-of": ">=6.0.3",
"tar": "^2.2.2",
"handlebars": ">=4.3.0",
"mem": ">=4.0.0",
"set-value": ">=2.0.1",
"mixin-deep": ">=1.3.2",
"atob": ">=2.1.0",
"lodash": ">=4.17.12"
},
"dependencies": {
"@types/lodash": "*",
"@types/node": "^13.13.2",
"chalk": "^2.4.2",
"commander": "^4.1.1",
"isbinaryfile": "^3.0.2",
"lodash": "^4.17.12"
},
"devDependencies": {
"@types/jest": "^22.1.2",
"@types/mock-fs": "^3.6.30",
"@types/tmp": "^0.0.33",
"jest": "^25.4.0",
"mock-fs": "^4.7.0",
"tmp": "^0.0.33",
"ts-jest": "^23.1.0",
"typescript": "^3.8.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "src(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}