-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
35 lines (35 loc) · 1.14 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
{
"main": "dist/livewire-sortable.js",
"name": "livewire-sortable",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git://github.com/livewire/sortable.git"
},
"scripts": {
"watch": "npx rollup -c -w",
"build": "npx rollup -c",
"test": "npx jest",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"author": "Caleb Porzio",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@shopify/draggable": "^1.0.0-beta.8",
"@testing-library/dom": "^6.11.0",
"@testing-library/jest-dom": "^4.2.4",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"jsdom-simulant": "^1.1.2",
"rollup": "^1.27.14",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.3"
},
"dependencies": {}
}