forked from JulianG/react-list-drag-and-drop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·59 lines (59 loc) · 1.35 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": "react-list-drag-and-drop",
"version": "0.9.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/JulianG/react-list-drag-and-drop.git"
},
"keywords": [
"react",
"typescript",
"drag and drop"
],
"main": "src/index.tsx",
"scripts": {
"build": "react-scripts-ts build",
"start": "react-scripts-ts start",
"test": "react-scripts-ts test --env=jsdom --coverage",
"eject": "react-scripts-ts eject",
"build-lib": "rm -rf ./lib/* && node ./build-lib.js",
"prepack": "npm run-script build-lib",
"postversion": "npm run-script build-lib"
},
"author": "",
"license": "",
"dependencies": {},
"peerDependencies": {
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"devDependencies": {
"@types/jest": "^22.1.3",
"@types/node": "^9.6.22",
"@types/react": "^16.4.4",
"@types/react-dom": "^16.0.6",
"glob": "^7.1.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-scripts-ts": "^4.0.8",
"typescript": "^2.9.2",
"why-did-you-update": "^0.1.1"
},
"files": [
"lib",
"LICENSE"
],
"types": [
"./lib/RLDD.d.ts",
"./lib/RLDDFloatingItemComponent.d.ts",
"./lib/RLDDItemComponent.d.ts",
"./lib/RLDDLogic.d.ts"
],
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}