-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.18 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.18 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
57
58
59
60
61
62
{
"name": "ts-typesversions",
"version": "0.0.4",
"description": "A library for generating multiple typesVersions for your package for easier downstream consumption",
"main": "dist/index.js",
"bin": "dist/Cli.js",
"repository": "https://github.com/jacobdr/ts-typesversions.git",
"author": "Jacob Roberts <jacobdr@gmail.com>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=8"
},
"dependencies": {
"bluebird": "~3.5.2",
"commander": "~2.19.0",
"debug": "~4.1.0",
"detect-indent": "~5.0.0",
"inquirer": "~6.2.0",
"jsonfile": "~5.0.0",
"source-map-support": "^0.5.9",
"strip-json-comments": "~2.0.1",
"typescript-2.7": "npm:typescript@2.7.x",
"typescript-2.8": "npm:typescript@2.8.x",
"typescript-2.9": "npm:typescript@2.9.x",
"typescript-3.0": "npm:typescript@3.0.x",
"typescript-3.1": "npm:typescript@3.1.x",
"webpack-merge": "~4.1.4"
},
"devDependencies": {
"@types/bluebird": "~3.5.24",
"@types/commander": "~2.12.2",
"@types/inquirer": "~0.0.43",
"@types/jsonfile": "~4.0.1",
"@types/node": "^10.12.2",
"@types/webpack-merge": "~4.1.3",
"np": "~3.0.4",
"prettier": "~1.14.3",
"tslint": "~5.11.0",
"tslint-config-airbnb": "~5.11.0",
"tslint-config-prettier": "~1.15.0",
"tslint-immutable": "~4.9.0",
"tslint-sonarts": "~1.8.0",
"typescript": "npm:typescript@3.1.x"
},
"scripts": {
"start": "rm -rf dist && yarn run tsc && node dist/Cli.js",
"test": "exit 0",
"prepublishOnly": "rm -rf dist && yarn run tsc",
"release": "yarn clean && yarn run prettier --debug-check src/** && yarn run np",
"clean": "rm -rf dist && /usr/bin/env bash -c \"rm -f tsconfig.2* tsconfig.3* \"",
"update-typings": "CONSUMING_PROJECT_ROOT=$(pwd) yarn run start -d --ts-versions 3.1,3.0,2.9,2.8"
},
"typesVersions": {
">=3.1": {
"*": [
"dist/ts-types-versions-3.1/*"
]
}
},
"types": "dist/ts-types-versions-2.8/index.d.ts"
}