forked from kriasoft/hyperapp-render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.76 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
{
"private": true,
"name": "@hyperapp/render",
"version": "2.1.0",
"description": "Render Hyperapp to an HTML string with SSR and Node.js streaming support",
"repository": "hyperapp/render",
"author": "Vladimir Kutepov",
"license": "MIT",
"keywords": [
"hyperapp",
"render",
"string",
"stream",
"server",
"html",
"ssr"
],
"main": "node/index.js",
"module": "node/module.js",
"typings": "src/node.d.ts",
"esnext": "src/node.js",
"browser": {
"node/index.js": "./browser/index.js",
"node/module.js": "./browser/module.js",
"src/node.d.ts": "./src/browser.d.ts",
"src/node.js": "./src/browser.js"
},
"dependencies": {
"@types/node": "*",
"hyperapp": "^1.2.0"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.52",
"@babel/plugin-transform-react-jsx": "7.0.0-beta.52",
"@babel/preset-env": "7.0.0-beta.52",
"@babel/register": "7.0.0-beta.52",
"babel-core": "^7.0.0-0",
"babel-jest": "^23.4.0",
"benchr": "^4.3.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-react": "^7.10.0",
"fs-extra": "^6.0.1",
"husky": "^0.14.3",
"jest": "^23.4.0",
"prettier": "^1.13.7",
"rollup": "^0.62.0",
"rollup-plugin-babel": "4.0.0-beta.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^4.0.0",
"typescript": "^2.9.2"
},
"scripts": {
"lint": "node tools/lint",
"test": "node tools/test",
"build": "node tools/build",
"precommit": "node tools/precommit",
"benchmark": "benchr benchmark/benchmark.js --require @babel/register"
}
}