forked from fivecar/react-native-draglist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.69 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
60
61
62
63
64
65
{
"name": "react-native-draglist",
"version": "3.6.2",
"description": "FlatList that reorders items by dragging",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.tsx",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"YOLO! What could possibly go wrong? (On a serious note, please run both iOS and Android examples and drag things around).\" && exit 1",
"build": "microbundle-crl --no-compress --format modern,cjs",
"prepare": "npm run build",
"release": "release-it"
},
"files": [
"dist"
],
"keywords": [
"react",
"native",
"react",
"flatlist",
"drag",
"draggable",
"reorder"
],
"author": "Philip Su",
"license": "MIT",
"peerDependencies": {
"react": ">=17.0.1",
"react-native": ">=0.64.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fivecar/react-native-draglist.git"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.1",
"@tsconfig/react-native": "^2.0.3",
"@types/jest": "^29.2.3",
"@types/react": "^18.0.25",
"@types/react-native": "^0.70.6",
"microbundle-crl": "^0.13.11",
"react": "^18.1.0",
"react-native": "^0.70.6",
"release-it": "^15.5.1"
},
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": false
}
},
"git": {
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs"
},
"github": {
"release": true
},
"hooks": {
"after:bump": "npx auto-changelog -p"
}
}
}