-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.24 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
{
"name": "backbone-react",
"private": true,
"version": "0.1.2",
"description": "Connect Backbone and React",
"repository": "github:CSNW/backbone-react",
"license": "MIT",
"homepage": "https://github.com/CSNW/backbone-react",
"author": "Tim Hall <tim.hall@cornerstonenw.com>",
"keywords": [
"backbone",
"react"
],
"main": "dist/backbone-react.umd.js",
"module": "dist/backbone-react.es.js",
"browser": "dist/backbone-react.umd.min.js",
"types": "dist/backbone-react.d.ts",
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"pretest": "npm run build",
"test": "jest",
"version": "npm run build && git add -A dist"
},
"peerDependencies": {
"backbone": "^1.4.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"@types/backbone": "^1.4.0",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"backbone": "^1.4.0",
"jest": "^24.8.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rollup": "^1.12.3",
"rollup-plugin-dts": "^0.15.1",
"rollup-plugin-filesize": "^6.1.0",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^24.0.2",
"tslib": "^1.9.3",
"typescript": "^3.4.5"
}
}