forked from treycordova/nativejsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.33 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
{
"name": "nativejsx",
"version": "4.3.0",
"description": "JSX to native DOM API transpilation.",
"main": "source/nativejsx.js",
"dependencies": {
"acorn": "^5.1.1",
"acorn-jsx": "^4.0.1",
"commander": "^2.9.0",
"escodegen": "^1.7.1",
"glob": "^7.0.3",
"merge": "^1.2.0"
},
"devDependencies": {
"chai": "^3.4.1",
"mocha": "^2.3.4",
"sinon": "^1.17.2",
"standard": "^9.0.0",
"webpack": "^2.2.1"
},
"engines": [
{
"node": "6.10.0"
}
],
"scripts": {
"test": "standard && ./node_modules/.bin/mocha --harmony",
"build": "standard && node ./scripts/generate-asts.js && ./node_modules/.bin/webpack"
},
"bin": {
"nativejsx": "./bin/nativejsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/treycordova/nativejsx.git"
},
"keywords": [
"jsx",
"dom",
"document",
"createElement",
"transpiler",
"transpilation",
"react",
"vnode"
],
"author": "Trey Cordova",
"license": "MIT",
"bugs": {
"url": "https://github.com/treycordova/nativejsx/issues"
},
"homepage": "https://github.com/treycordova/nativejsx#readme",
"standard": {
"ignore": [
"dist",
"test/jsx"
],
"globals": [
"HTMLElement",
"DOMException",
"describe",
"beforeEach",
"it"
]
}
}