-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "livewire-sortablejs",
"version": "0.1.1",
"description": "A Livewire wrapper for SortableJS.",
"main": "dist/livewire-sortable.js",
"scripts": {
"watch": "npx rollup -c -w",
"build": "npx rollup -c",
"lint": "eslint src tests --fix",
"test": "jest --verbose",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amiranagram/livewire-sortablejs.git"
},
"keywords": [
"livewire",
"sortable",
"sortablejs"
],
"author": "Amir Rami",
"license": "MIT",
"bugs": {
"url": "https://github.com/amiranagram/livewire-sortablejs/issues"
},
"homepage": "https://github.com/amiranagram/livewire-sortablejs#readme",
"dependencies": {
"sortablejs": "^1.13.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"eslint": "^7.1.0",
"jest": "^27.0.0",
"rollup": "^2.50.5",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2"
},
"jest": {
"testMatch": [
"**/tests/**/*.js"
]
}
}