This repository has been archived by the owner on Sep 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathpackage.json
68 lines (68 loc) · 1.66 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "react-faux-dom",
"version": "4.5.0",
"description": "DOM like data structure to be mutated by D3 et al, then rendered to React elements",
"main": "lib/ReactFauxDOM.js",
"scripts": {
"test": "standard && tape -r babel-register './test/**/*.js' | faucet",
"prepublish": "npm test && make build"
},
"files": [
"dist",
"lib"
],
"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": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"d3": "^5.9.2",
"d3-selection": "^1.4.0",
"d3-selection-multi": "^1.0.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"faucet": "0.0.1",
"nodemon": "^1.18.10",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"sinon": "^4.5.0",
"standard": "^10.0.3",
"tape": "^4.10.1",
"webpack": "^3.12.0"
},
"dependencies": {
"create-react-class": "^15.6.3",
"hoist-non-react-statics": "^3.3.0",
"query-selector": "^1.0.9",
"style-attr": "^1.0.1"
},
"peerDependencies": {
"react": "*"
},
"standard": {
"parser": "babel-eslint"
}
}