-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 974 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
{
"name": "react-data-markup",
"description": "Data syntax for React.js markup",
"version": "2.0.0",
"homepage": "https://github.com/dferens/react-data-markup",
"keywords": [
"react",
"react.js",
"markup",
"dom"
],
"repository": {
"type": "git",
"url": "git://github.com/dferens/react-data-markup.git"
},
"bugs": {
"url": "https://github.com/dferens/react-data-markup/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/dferens/react-data-markup/LICENSE"
}
],
"main": "react-data-markup.js",
"peerDependencies": {
"react": ">= 0.12.0 < 16.0.0"
},
"devDependencies": {
"eslint": "^2.0.0",
"react": ">= 0.12.0 < 16.0.0",
"react-dom": "^15.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.1"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint && node test/index.js | tap-spec"
},
"dependencies": {
"create-react-class": "^15.6.3"
}
}