forked from Olical/react-faux-dom
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 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-faux-dom",
"version": "2.0.1",
"description": "DOM like data structure to be mutated by D3 et al, then rendered to React elements",
"main": "src/ReactFauxDOM.js",
"scripts": {
"test": "standard && tape './test/**/*.js' | faucet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Olical/react-faux-dom.git"
},
"keywords": [
"d3",
"react",
"dom",
"virtual"
],
"author": {
"name": "Oliver Caldwell",
"email": "[email protected]",
"url": "http://oli.me.uk/"
},
"license": "Unlicense",
"bugs": {
"url": "https://github.com/Olical/react-faux-dom/issues"
},
"homepage": "https://github.com/Olical/react-faux-dom#readme",
"devDependencies": {
"d3": "^3.5.6",
"faucet": "0.0.1",
"nodemon": "^1.7.1",
"react": "^0.14.0",
"sinon": "^1.17.1",
"standard": "^5.1.0",
"tape": "^4.2.1"
},
"dependencies": {
"lodash.assign": "^3.2.0",
"lodash.camelcase": "^3.0.1",
"lodash.clone": "^3.0.3",
"lodash.mapvalues": "^3.0.1",
"query-selector": "^1.0.9",
"style-attr": "^1.0.1"
},
"peerDependencies": {
"react": "*"
}
}