forked from clayallsopp/react.backbone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 810 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 810 Bytes
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
{
"name": "react.backbone",
"version": "0.6.0",
"author": "Clay Allsopp <clay.allsopp@gmail.com>",
"scripts": {
"test": "jest"
},
"description": "Plugin for React to make Backbone migration easier",
"main": "react.backbone.js",
"repository": {
"type": "git",
"url": "https://github.com/usepropeller/react.backbone"
},
"keywords": [
"react",
"backbone",
"reactjs",
"jsx",
"react.backbone"
],
"license": "MIT",
"devDependencies": {
"jest-cli": "~0.1.17",
"react-tools": "0.11.x",
"react": ">=0.10.x <1.x.x",
"backbone": "1.x.x"
},
"peerDependencies": {
"react": ">=0.10.x <1.x.x",
"backbone": "1.x.x"
},
"jest": {
"unmockedModulePathPatterns": ["node_modules/react"],
"scriptPreprocessor": "preprocessor.js"
}
}