-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.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
{
"name": "columns.js",
"version": "1.1.4",
"description": "Lightweight masonry grid js",
"scripts": {
"build": "rm -rf lib/ && babel src -d lib",
"build:dist": "webpack --mode=production",
"test": "nyc --reporter=lcov mocha 'test/**/*.test.js'"
},
"main": "lib/columns.js",
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mladenilic/columns.js.git"
},
"keywords": [
"masonry",
"grid",
"columns"
],
"author": "Mladen Ilic",
"license": "ISC",
"bugs": {
"url": "https://github.com/mladenilic/columns.js/issues"
},
"homepage": "https://columnsjs.com/",
"devDependencies": {
"@babel/cli": "^7.22.6",
"@babel/core": "^7.22.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.22.7",
"@babel/register": "^7.22.5",
"babel-loader": "^9.1.3",
"chai": "^4.3.7",
"jsdom": "^22.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4"
}
}