forked from haltu/muuri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.04 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
{
"name": "muuri",
"version": "0.8.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": "inramo@gmail.com",
"url": "https://github.com/niklasramo"
},
"repository": {
"type": "git",
"url": "git@github.com: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",
"bundle": "./node_modules/.bin/rollup -c",
"minify": "./node_modules/.bin/terser ./dist/muuri.js -o ./dist/muuri.min.js -c -m --comments",
"build": "./node_modules/.bin/gulp build",
"lint": "./node_modules/.bin/gulp lint",
"format": "./node_modules/.bin/prettier --write ./src/**/*.js",
"format-test": "./node_modules/.bin/prettier --list-different ./src/**/*.js",
"size": "./node_modules/.bin/gulp size",
"pre-commit-hook": "./node_modules/.bin/gulp pre-commit"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit-hook"
}
},
"devDependencies": {
"dotenv": "^8.0.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-size": "^3.0.0",
"husky": "^1.3.1",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.1.0",
"karma-qunit": "^3.1.2",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^2.0.2",
"karma-story-reporter": "^0.3.1",
"mezr": "^0.6.2",
"prettier": "^1.18.2",
"prosthetic-hand": "^1.3.1",
"qunit": "^2.9.2",
"rimraf": "^2.6.3",
"rollup": "^1.16.7",
"terser": "^4.1.2",
"web-animations-js": "^2.3.2",
"yargs": "^13.2.4"
}
}