forked from haltu/muuri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.09 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": "muuri",
"version": "0.6.0",
"description": "Responsive, sortable, filterable and draggable grid layouts.",
"keywords": [
"grid",
"layout",
"bin-packing",
"filter",
"sort",
"drag"
],
"homepage": "https://github.com/haltu/muuri",
"license": "MIT",
"author": {
"name": "Niklas Rämö",
"email": "[email protected]",
"url": "https://github.com/niklasramo"
},
"repository": {
"type": "git",
"url": "[email protected]:haltu/muuri.git"
},
"main": "dist/muuri.js",
"scripts": {
"test": "./node_modules/.bin/gulp test",
"test-sauce": "./node_modules/.bin/gulp test-sauce",
"test-sauce-min": "./node_modules/.bin/gulp test-sauce-min",
"test-local": "./node_modules/.bin/gulp test-local",
"test-local-min": "./node_modules/.bin/gulp test-local-min",
"build": "./node_modules/.bin/rollup -c",
"lint": "./node_modules/.bin/gulp lint",
"format": "find ./src/**/*.js | xargs -I{} ./node_modules/.bin/prettier --write {}",
"format-test": "find ./src/**/*.js | xargs -I{} ./node_modules/.bin/prettier --list-different {}",
"size": "./node_modules/.bin/gulp size"
},
"husky": {
"hooks": {
"pre-commit": "./node_modules/.bin/gulp pre-commit"
}
},
"dependencies": {
"hammerjs": "^2.0.0"
},
"devDependencies": {
"dotenv": "^6.0.0",
"gulp": "^4.0.0",
"gulp-eslint": "^4.0.2",
"gulp-size": "^3.0.0",
"husky": "^1.0.0-rc.12",
"karma": "^2.0.4",
"karma-chrome-launcher": "^2.2.0",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.1.0",
"karma-qunit": "^2.1.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.2.0",
"karma-story-reporter": "^0.3.1",
"mezr": "^0.6.2",
"prettier": "^1.13.7",
"prosthetic-hand": "^1.3.1",
"qunit": "^2.6.1",
"rimraf": "^2.6.2",
"rollup": "^0.62.0",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-strip-banner": "^0.2.0",
"rollup-plugin-terser": "^1.0.1",
"web-animations-js": "^2.3.1",
"yargs": "^12.0.1"
}
}