-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
42 lines (42 loc) · 936 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
{
"name": "react.backbone",
"version": "0.9.2",
"author": "Clay Allsopp <[email protected]>",
"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": {
"backbone": "1.x.x",
"jest-cli": "~0.8.2",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"react-tools": "0.13.x"
},
"peerDependencies": {
"react": "^15.0.0",
"backbone": "1.x.x",
"underscore": ">=1.2.x"
},
"jest": {
"unmockedModulePathPatterns": [
"node_modules/react",
"node_modules/react-dom"
],
"scriptPreprocessor": "preprocessor.js"
}
}