-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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
{
"name": "esx",
"version": "2.3.3",
"description": "High throughput React Server Side Rendering",
"main": "index.js",
"browser": "./browser.js",
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"test": "tap test/*.test.js",
"test:browser": "NODE_ENV=development airtap -w --local test/create.test.js",
"test:client": "TEST_CLIENT_CODE=1 tap test/create.test.js",
"cov": "tap --100 --coverage-report=html test/*.test.js",
"ci": "tap --cov --lines=90 --branches=90 --functions=100 --statements=90 --coverage-report=text-lcov test/*.test.js | codecov --pipe"
},
"keywords": [
"react",
"jsx",
"es6",
"templates",
"performance",
"speed",
"fast",
"esnext",
"ssr",
"server-side rendering",
"rendering"
],
"author": "David Mark Clements <[email protected]>",
"license": "MIT",
"devDependencies": {
"airtap": "^2.0.1",
"aquatap": "^1.0.1",
"codecov": "^3.3.0",
"fastbench": "^1.0.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-test-renderer": "^16.8.4",
"standard": "^12.0.1"
},
"dependencies": {
"debug": "^4.1.0",
"esx-optimize": "^1.0.0"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/esxjs/esx.git"
},
"bugs": {
"url": "https://github.com/esxjs/esx/issues"
},
"homepage": "https://github.com/esxjs/esx#readme"
}