forked from haltu/muuri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.28 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
73
74
75
76
77
78
79
80
{
"name": "muuri",
"version": "0.9.3",
"description": "Responsive, sortable, filterable and draggable layouts",
"keywords": [
"grid",
"layout",
"bin-packing",
"filter",
"sort",
"drag"
],
"homepage": "https://muuri.dev/",
"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",
"module": "dist/muuri.module.js",
"types": "src/index.d.ts",
"files": [
"package.json",
"src",
"dist",
"README.md",
"LICENSE.md",
"AUTHORS.txt",
"CONTRIBUTING.md"
],
"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-tests": "./node_modules/.bin/prettier --write ./tests/**/*.js",
"validate-formatting": "./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.2.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-size": "^3.0.0",
"husky": "^4.2.5",
"karma": "^5.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.3.0",
"karma-qunit": "^4.1.1",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^4.1.5",
"karma-story-reporter": "^0.3.1",
"mezr": "^0.6.2",
"prettier": "^2.0.5",
"prosthetic-hand": "^1.3.1",
"qunit": "^2.10.1",
"rimraf": "^3.0.2",
"rollup": "^2.23.1",
"terser": "^5.0.0",
"web-animations-js": "^2.3.2"
}
}