forked from Vestride/Shuffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.74 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
66
67
68
69
70
71
72
{
"name": "shufflejs",
"version": "5.2.3",
"description": "Categorize, sort, and filter a responsive grid of items",
"keywords": [
"gallery",
"shuffle",
"layout",
"masonry",
"filter",
"sort",
"responsive",
"grid",
"mobile",
"tiles"
],
"main": "dist/shuffle.js",
"module": "dist/shuffle.esm.js",
"moduleSource": "src/shuffle.js",
"types": "index.d.ts",
"scripts": {
"compile": "gulp scripts",
"css": "gulp css",
"gulp": "gulp",
"build": "npm run gulp && npm run css",
"serve": "gulp jekyll",
"test": "eslint src && jest && tsc --project ./test/types",
"watch": "gulp watch"
},
"repository": {
"type": "git",
"url": "git://github.com/Vestride/Shuffle.git"
},
"author": "Glen Cheney <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vestride/Shuffle/issues"
},
"homepage": "https://github.com/Vestride/Shuffle",
"files": [
"dist",
"src",
"index.d.ts"
],
"dependencies": {
"array-parallel": "^0.1.3",
"matches-selector": "^1.0.0",
"throttleit": "^1.0.0",
"tiny-emitter": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"autoprefixer": "^10.2.4",
"cssnano": "^4.1.10",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.17.3",
"gulp": "^4.0.2",
"gulp-postcss": "^9.0.0",
"gulp-sass": "^4.0.0",
"gulp-shell": "^0.8.0",
"jest": "^26.1.0",
"rollup": "^2.2.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-terser": "^7.0.0",
"sinon": "^9.0.0",
"typescript": "^4.0.5"
}
}