forked from styleguidist/react-docgen-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 914 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 914 Bytes
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
{
"name": "react-docgen-typescript",
"version": "1.1.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"tsc": "tsc",
"prepublish": "tsc -d",
"test": "tsc && mocha --timeout 10000 ./lib/**/__tests__/**.js",
"test:debug": "tsc && mocha --debug ./lib/**/__tests__/**.js",
"print": "npm run tsc && node ./lib/print.js",
"print:sample1": "npm run tsc && node ./lib/print.js ./src/__tests__/data/ColumnHigherOrderComponent.tsx simple"
},
"author": "pvasek",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/mocha": "^2.2.39",
"@types/node": "^7.0.16",
"@types/react": "^15.0.14",
"@types/source-map-support": "^0.4.0",
"chai": "^4.0.2",
"mocha": "^2.5.3",
"react": "^15.4.2",
"source-map-support": "^0.4.15",
"typescript": "^2.3.4"
},
"files": [
"lib",
"README.md"
]
}