-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
49 lines (49 loc) · 1.11 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
{
"name": "react-hyperscript",
"description": "Hyperscript syntax for React.js markup",
"version": "3.2.0",
"homepage": "https://github.com/mlmorg/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/mlmorg/react-hyperscript.git"
},
"bugs": {
"url": "https://github.com/mlmorg/react-hyperscript/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mlmorg/react-hyperscript/blob/master/LICENSE"
}
],
"main": "index.js",
"peerDependencies": {
"react": ">= 0.12.0 < 17.0.0"
},
"devDependencies": {
"create-react-class": "^15.6.2",
"eslint": "^2.0.0",
"eslint-config-mlmorg": "^2.0.0",
"react": ">= 0.12.0 < 17.0.0",
"react-dom": "^16.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.1"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint && node test/index.js | tap-spec"
}
}