-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
34 lines (34 loc) · 845 Bytes
/
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
{
"name": "ts-jsx-loader",
"version": "0.2.1",
"description": "Webpack loader for transforming JSX in TypeScript files.",
"main": "index.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha --reporter spec test/run.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jbrantly/ts-jsx-loader.git"
},
"keywords": [
"webpack",
"loader",
"jsx",
"typescript",
"ts"
],
"author": "James Brantly <james@jbrantly.com> (http://www.jbrantly.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jbrantly/ts-jsx-loader/issues"
},
"homepage": "https://github.com/jbrantly/ts-jsx-loader",
"dependencies": {
"escape-string-regexp": "^1.0.3",
"loader-utils": "^0.2.6",
"react-tools": "^0.13.1"
},
"devDependencies": {
"mocha": "^2.1.0"
}
}