-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "jsx-transform",
"version": "2.4.0",
"description": "JSX transpiler. Desugar JSX into JavaScript. A standard and configurable implementation of JSX decoupled from React.",
"files": [
"lib",
"browserify.js"
],
"main": "lib/jsx.js",
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "git://github.com/alexmingoia/jsx-transform.git"
},
"keywords": [
"jsx",
"virtual-hyperscript",
"vtree",
"virtual-dom",
"html",
"mercury",
"hyperscript"
],
"author": "Alex Mingoia <talk@alexmingoia.com>",
"license": "0BSD",
"bugs": {
"url": "https://github.com/alexmingoia/jsx-transform/issues"
},
"homepage": "https://github.com/alexmingoia/jsx-transform",
"dependencies": {
"esprima-fb": "^15001.1001.0-dev-harmony-fb",
"jstransform": "^11.0.3",
"through2": "^2.0.0"
},
"devDependencies": {
"browserify": "^16.1.1",
"expect.js": "^0.3.1",
"gulp": "^3.9.1",
"gulp-instrument": "^0.1.0",
"gulp-jsdoc-to-markdown": "^1.2.2",
"gulp-jshint": "^2.1.0",
"gulp-mocha": "^5.0.0",
"gulp-rename": "^1.2.2",
"jshint": "^2.9.5",
"jshint-stylish": "^2.2.1",
"vinyl-source-stream": "^2.0.0"
}
}