This repository has been archived by the owner on Jul 8, 2024. It is now read-only.
forked from KuveytTurk/react-dts-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.94 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
{
"author": "kuveytturk",
"description": "Simple .d.ts generator for React components.",
"license": "Apache-2.0",
"name": "@despegar/react-dts-generator",
"version": "0.1.3",
"main": "./bin/src/index.js",
"types": "./bin/src/index.d.ts",
"files": [
"bin/src/**/*.*"
],
"keywords": [
"react",
"typescript",
"dts",
"definitelytyped",
"typings"
],
"repository": {
"type": "git",
"url": "https://github.com/despegar/react-dts-generator.git"
},
"bugs": {
"url": "https://github.com/despegar/react-dts-generator/issues"
},
"scripts": {
"test": "mocha bin/test/*.js",
"build": "rimraf bin && tsc",
"lint": "tslint -p tsconfig.json \"./{src,baselines,test}/**/*.{ts,tsx}\"",
"lint:fix": "tslint -p tsconfig.json \"./{src,baselines,test}/**/*.{ts,tsx}\" --fix "
},
"publishConfig": {
"registry": "https://backoffice-secure.despegar.com/nexus/repository/npm-hosted/"
},
"dependencies": {
"comment-parser": "^0.5.4",
"prettier": "^1.16.4",
"react-docgen": "^5.3.1",
"typescript": "^3.3.4000"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@kuveytturk/boa-base": "^0.1.3",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.11.4",
"@types/parse-git-config": "^3.0.0",
"@types/prettier": "^1.16.1",
"@types/prop-types": "^15.7.0",
"@types/react": "^16.8.8",
"@types/yargs": "^12.0.10",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"diff": "^4.0.1",
"mocha": "^6.0.2",
"prop-types": "^15.7.2",
"react": "^16.8.3",
"rimraf": "^2.6.3",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0"
}
}