UNPKG

2.52 kBJSONView Raw
1{
2 "name": "react-sortablejs",
3 "author": {
4 "name": "Wayne Van Son",
5 "email": "waynevanson@gmail.com"
6 },
7 "license": "MIT",
8 "version": "5.0.4",
9 "private": false,
10 "main": "dist/index.js",
11 "module": "dist/index.es.js",
12 "types": "dist/index.d.ts",
13 "files": [
14 "dist",
15 "local-types"
16 ],
17 "scripts": {
18 "commit": "cz",
19 "prepublishOnly": "yarn build",
20 "start": "parcel examples/index.html --out-dir temp/server --cache-dir temp/cache ",
21 "build": "yarn build:rollup && yarn build:tsc",
22 "build:rollup": " rollup --config config/rollup.config.js",
23 "build:tsc": "ts-node config/move-files.ts"
24 },
25 "plugins": [
26 "@semantic-release/commit-analyzer",
27 "@semantic-release/release-notes-generator",
28 "@semantic-release/changelog",
29 [
30 "@semantic-release/github",
31 {
32 "assets": [
33 "dist/**"
34 ]
35 }
36 ],
37 "@semantic-release/npm",
38 "@semantic-release/git",
39 [
40 "@semantic-release/git",
41 {
42 "assets": [
43 "dist/**",
44 "package.json"
45 ],
46 "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
47 }
48 ]
49 ],
50 "husky": {
51 "hooks": {
52 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
53 "pre-commit": "yarn build",
54 "pre-push": "yarn build"
55 }
56 },
57 "config": {
58 "commitizen": {
59 "path": "./node_modules/cz-conventional-changelog"
60 }
61 },
62 "commitlint": {
63 "extends": [
64 "@commitlint/config-conventional"
65 ]
66 },
67 "peerDependencies": {
68 "@types/sortablejs": "^1.10.0",
69 "react": "^16.9.0",
70 "react-dom": "^16.9.0",
71 "sortablejs": "^1.10.0"
72 },
73 "dependencies": {
74 "classnames": "^2.2.6",
75 "tiny-invariant": "^1.1.0"
76 },
77 "devDependencies": {
78 "@commitlint/cli": "^11.0.0",
79 "@commitlint/config-conventional": "^11.0.0",
80 "@semantic-release/git": "^9.0.0",
81 "@types/classnames": "^2.2.10",
82 "@types/node": "14.11.2",
83 "@types/react": "16.9.49",
84 "@types/react-dom": "16.9.8",
85 "@types/sortablejs": "^1.10.0",
86 "commitizen": "^4.2.1",
87 "copy-dir": "^1.3.0",
88 "cz-conventional-changelog": "^3.3.0",
89 "husky": "^4.3.0",
90 "parcel-bundler": "^1.12.4",
91 "react": "^16.13.1",
92 "react-dom": "^16.13.1",
93 "rollup": "^2.28.2",
94 "rollup-plugin-commonjs": "^10.1.0",
95 "rollup-plugin-typescript2": "^0.27.2",
96 "semantic-release": "^17.1.2",
97 "sortablejs": "^1.10.0",
98 "ts-node": "^9.0.0",
99 "typescript": "^4.0.3"
100 }
101}