-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.46 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
{
"name": "to-esx",
"version": "1.0.15",
"description": "Converts JSX and `React.createElement` into [esx](https://github.com/esxjs/esx)",
"main": "index.js",
"bin": {
"to-esx": "./cmd.js"
},
"scripts": {
"lint": "eslint --ext .js index.js test/*.js",
"test": "NODE_OPTIONS='-r ./test/check --experimental-vm-modules --no-warnings' tap test/*.test.js",
"only": "TAP_ONLY=1 NODE_OPTIONS='-r ./test/check --experimental-vm-modules --no-warnings' node test/index.test.js | grep -v SKIP",
"cov": "NODE_OPTIONS='-r ./test/check --experimental-vm-modules --no-warnings' tap --100 --coverage-report=html test/*.test.js"
},
"keywords": [
"esx",
"react",
"createElement",
"jsx",
"fast",
"performance",
"native"
],
"author": "David Mark Clements <[email protected]>",
"license": "MIT",
"dependencies": {
"acorn": "^7.3.1",
"acorn-jsx": "^5.2.0",
"react": "^16.13.1"
},
"devDependencies": {
"eslint": "^7.5.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"tap": "^14.10.7"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/esxjs/to-esx.git"
},
"bugs": {
"url": "https://github.com/esxjs/to-esx/issues"
},
"homepage": "https://github.com/esxjs/to-esx#readme"
}