forked from reactjs/react-art
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.25 KB
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
{
"name": "react-art",
"description": "React ART is a JavaScript library for drawing vector graphics using React. It provides declarative and reactive bindings to the ART library. Using the same declarative API you can render the output to either Canvas, SVG or VML (IE8).",
"version": "0.14.0",
"keywords": [
"react",
"art",
"svg",
"vml",
"canvas",
"jsx"
],
"bugs": "https://github.com/reactjs/react-art/issues",
"licenses": "BSD-3-Clause",
"main": "lib/ReactART.js",
"repository": {
"type": "git",
"url": "https://github.com/reactjs/react-art.git"
},
"dependencies": {
"art": "^0.10.0",
"fbjs": "^0.2.0"
},
"peerDependencies": {
"react": "^0.13.0 || ^0.14.0-a"
},
"devDependencies": {
"babel-jest": "^5.3.0",
"del": "^0.1.3",
"gulp": "^3.8.10",
"gulp-react": "^2.0.0",
"gulp-shell": "^0.3.0",
"jest-cli": "^0.2.1",
"react": "^0.14.0-a",
"react-dom": "^0.14.0-a"
},
"scripts": {
"prepublish": "gulp",
"test": "jest"
},
"engines": {
"node": ">=0.10.0"
},
"jest": {
"rootDir": "src",
"scriptPreprocessor": "../node_modules/babel-jest",
"setupEnvScriptFile": "../jest/environment.js",
"unmockedModulePathPatterns": [
""
]
}
}