forked from mlmorg/react-hyperscript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 984 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
40
41
42
43
44
{
"name": "react-hyperscript",
"description": "Hyperscript syntax for React.js markup",
"homepage": "https://github.com/periodo/react-hyperscript",
"author": {
"name": "Matt Morgan",
"email": "[email protected]",
"url": "http://mlmorg.com"
},
"keywords": [
"react",
"react.js",
"hyperscript",
"markup",
"dom"
],
"repository": {
"type": "git",
"url": "git://github.com/periodo/react-hyperscript.git"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/periodo/react-hyperscript/blob/master/LICENSE"
}
],
"main": "index.js",
"peerDependencies": {
"react": ">= 0.12.0"
},
"devDependencies": {
"create-react-class": "^15.7.0",
"eslint": "^8.57.1",
"react": ">= 0.12.0",
"react-dom": "^18.3.1",
"tap-spec": "^5.0.0",
"tape": "^5.9.0"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint && node test/index.js | tap-spec"
}
}