-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.59 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
{
"name": "connect-backbone-to-react",
"description": "Connect Backbone Models and Collections to React.",
"version": "3.1.0",
"scripts": {
"fmt": "mongodb-js-fmt",
"check": "mongodb-js-precommit",
"test": "mocha",
"ci": "npm run check && npm test",
"compile": "babel lib/ --out-dir dist/",
"watch": "babel --watch lib/ --out-dir dist/",
"prepublish": "npm run compile",
"release": "standard-version"
},
"homepage": "http://github.com/mongodb-js/connect-backbone-to-react",
"repository": {
"type": "git",
"url": "git://github.com/mongodb-js/connect-backbone-to-react.git"
},
"bugs": {
"url": "git://github.com/mongodb-js/connect-backbone-to-react.git/issues"
},
"keywords": [
"backbone",
"react"
],
"dependencies": {
"hoist-non-react-statics": "^1.2.0",
"lodash.debounce": "^4.0.8",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^16.6.0-0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-env": "^1.1.8",
"babel-preset-react": "^6.22.0",
"babel-register": "^6.22.0",
"backbone": "^1.3.3",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint-config-mongodb-js": "^2.3.0",
"jsdom": "^9.11.0",
"mocha": "^3.2.0",
"mongodb-js-fmt": "^0.0.3",
"mongodb-js-precommit": "^0.2.8",
"pre-commit": "^1.1.2",
"react": "^16.12.0",
"react-test-renderer": "^16.12.0",
"react-dom": "^16.12.0",
"sinon": "^1.17.7",
"standard-version": "^4.0.0"
},
"license": "Apache-2.0",
"precommit": [
"check"
]
}