@pantograph/sortable 2.1.1 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,58 +1,38 @@
1
1
  {
2
- "name": "@pantograph/sortable",
3
- "exportName": "Sortable",
4
- "version": "2.1.1",
5
- "author": {
6
- "name": "sedmedgh",
7
- "email": "sedmedgh@gmail.com"
8
- },
9
- "description": "JavaScript library for reorderable drag-and-drop lists on modern browsers and touch devices. No jQuery required. Supports Meteor, AngularJS, React, Polymer, Vue, Knockout and any CSS library, e.g. Bootstrap.",
10
- "main": "./Sortable.min.js",
11
- "module": "modular/sortable.esm.js",
12
- "types": "./index.d.ts",
13
- "scripts": {
14
- "build:umd": "set NODE_ENV=umd&& rollup -c ./scripts/umd-build.js",
15
- "build:umd:watch": "set NODE_ENV=umd&& rollup -w -c ./scripts/umd-build.js",
16
- "build:es": "set NODE_ENV=es&& rollup -c ./scripts/esm-build.js",
17
- "build:es:watch": "set NODE_ENV=es&& rollup -w -c ./scripts/esm-build.js",
18
- "build": "npm run build:es && npm run build:umd",
19
- "test:compat": "node ./scripts/test-compat.js",
20
- "test": "node ./scripts/test.js"
21
- },
22
- "devDependencies": {
23
- "@babel/core": "^7.4.4",
24
- "@babel/plugin-transform-object-assign": "^7.2.0",
25
- "@babel/preset-env": "^7.4.4",
26
- "rollup": "^1.11.3",
27
- "rollup-plugin-babel": "^4.3.2",
28
- "rollup-plugin-json": "^4.0.0",
29
- "rollup-plugin-node-resolve": "^5.0.0",
30
- "testcafe": "^1.3.1",
31
- "testcafe-browser-provider-saucelabs": "^1.7.0",
32
- "testcafe-reporter-xunit": "^2.1.0",
33
- "uglify-js": "^3.5.12"
34
- },
35
- "maintainers": [
36
- "Konstantin Lebedev <ibnRubaXa@gmail.com>",
37
- "Owen Mills <owen23355@gmail.com>"
38
- ],
39
- "repository": {
40
- "type": "git",
41
- "url": "git://github.com/SortableJS/Sortable.git"
42
- },
43
- "files": [
44
- "Sortable.js",
45
- "Sortable.min.js",
46
- "index.d.ts",
47
- "plugins.d.ts",
48
- "modular/"
49
- ],
50
- "keywords": [
51
- "sortable",
52
- "reorder",
53
- "native",
54
- "drag",
55
- "drop"
56
- ],
57
- "license": "MIT"
2
+ "name": "@pantograph/sortable",
3
+ "version": "2.2.1",
4
+ "id": "sortable",
5
+ "type": "module",
6
+ "exportName": "Sortable",
7
+ "author": {
8
+ "name": "sedmedgh",
9
+ "email": "sedmedgh@gmail.com"
10
+ },
11
+ "description": "JavaScript library for reorderable drag-and-drop lists on modern browsers and touch devices. No jQuery required. Supports Meteor, AngularJS, React, Polymer, Vue, Knockout and any CSS library, e.g. Bootstrap.",
12
+ "main": "./dist/index.cjs",
13
+ "module": "./dist/index.js",
14
+ "types": "./dist/index.d.ts",
15
+ "exports": {
16
+ ".": {
17
+ "require": "./dist/index.cjs",
18
+ "import": "./dist/index.js",
19
+ "types": "./dist/index.d.ts"
20
+ },
21
+ "./*": "./src/*"
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "scripts": {
27
+ "build": "vite build",
28
+ "release": "node ../../scripts/release.cjs"
29
+ },
30
+ "keywords": [
31
+ "sortable",
32
+ "reorder",
33
+ "native",
34
+ "drag",
35
+ "drop"
36
+ ],
37
+ "license": "MIT"
58
38
  }