UNPKG

688 BJSONView Raw
1{
2 "name": "react-dnd-test-backend",
3 "version": "7.5.0",
4 "description": "A mock backend for testing React DnD apps",
5 "main": "lib/cjs/index.js",
6 "module": "lib/esm/index.js",
7 "types": "lib/cjs/index.d.ts",
8 "license": "MIT",
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/react-dnd/react-dnd.git"
12 },
13 "scripts": {
14 "clean": "rimraf lib",
15 "build:cjs": "tsc -b tsconfig.cjs.json",
16 "build:esm": "tsc -b tsconfig.esm.json",
17 "build": "run-p build:*",
18 "test": "run-s clean build",
19 "prepublish": "npm run test"
20 },
21 "dependencies": {
22 "dnd-core": "^7.5.0"
23 },
24 "devDependencies": {
25 "npm-run-all": "^4.1.5",
26 "rimraf": "^2.6.3",
27 "typescript": "^3.5.1"
28 }
29}