-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 740 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 740 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
{
"name": "ts-loader-react",
"version": "1.0.0",
"description":
"Webpack loader that generates runtime prop types from TypeScript types",
"tags": ["webpack", "typescript", "react", "prop-types"],
"main": "dist/loader.js",
"directories": {
"example": "example"
},
"dependencies": {
"ts-simple-ast": "^0.97.0",
"typescript": "^2.6.1"
},
"devDependencies": {
"@types/node": "^8.0.53"
},
"scripts": {
"build": "tsc",
"debug-example":
"npm run build && ( cd example && npm install && ( cd node_modules && rm -fr ts-react-loader && ln -s ../.. ts-react-loader ) && node inspect ./node_modules/.bin/webpack )"
},
"author": "Stephen Sugden <me@stephensugden.com>",
"license": "MIT"
}