-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 940 Bytes
/
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
{
"name": "hypernova-preact",
"version": "2.0.1",
"description": "Preact Bindings for Hypernova",
"main": "lib/index.js",
"author": "Felipe Guizar Diaz <[email protected]>",
"license": "MIT",
"keywords": [
"preact",
"hypernova",
"ssr",
"isomorphic",
"universal"
],
"repository": {
"type": "git",
"url": "[email protected]:ara-framework/hypernova-preact.git"
},
"scripts": {
"prepublish": "npm run build",
"lint": "eslint src",
"build": "babel src -d lib",
"dev": "babel src -d lib -w"
},
"dependencies": {
"hypernova": "^2.5.0",
"preact": "^10.0.5",
"preact-render-to-string": "^5.1.1"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/runtime": "^7.7.2",
"babel-preset-airbnb": "^4.1.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.16.0"
}
}