-
-
Notifications
You must be signed in to change notification settings - Fork 643
/
package.json
82 lines (82 loc) · 2.33 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
81
82
{
"name": "muuri",
"version": "0.9.5",
"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",
"docs-dev": "vitepress dev docs",
"docs-build": "vitepress build docs",
"docs-serve": "vitepress serve docs"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit-hook"
}
},
"devDependencies": {
"dotenv": "10.0.0",
"gulp": "4.0.2",
"gulp-eslint": "6.0.0",
"gulp-size": "4.0.1",
"husky": "4.3.8",
"karma": "6.3.4",
"karma-chrome-launcher": "3.1.0",
"karma-qunit": "4.1.2",
"karma-sauce-launcher": "4.3.6",
"karma-story-reporter": "0.3.1",
"mezr": "0.6.2",
"prettier": "2.3.2",
"prosthetic-hand": "1.3.1",
"qunit": "2.16.0",
"rimraf": "3.0.2",
"rollup": "2.52.8",
"terser": "5.7.1",
"web-animations-js": "2.3.2",
"vitepress": "1.0.0-alpha.14",
"vue": "3.2.39"
}
}