Files
Trilium/packages/splitjs/package.json

36 lines
1.1 KiB
JSON
Raw Normal View History

2018-11-04 14:32:14 -07:00
{
"name": "split.js",
2019-06-01 13:16:40 -04:00
"version": "1.5.11",
2018-11-04 14:32:14 -07:00
"description": "2kb unopinionated utility for resizeable split views",
"main": "dist/split.js",
"minified:main": "dist/split.min.js",
2018-11-07 10:08:06 -07:00
"module": "dist/split.es.js",
2018-11-05 07:20:37 -07:00
"repository": "https://github.com/nathancahill/split",
2018-11-04 14:32:14 -07:00
"keywords": ["css", "split", "flexbox", "tiny", "split-layout"],
"author": "Nathan Cahill <nathan@nathancahill.com>",
"license": "MIT",
"homepage": "https://split.js.org/",
"scripts": {
"lint": "eslint src",
"test": "karma start",
2019-06-01 13:16:40 -04:00
"prepublish": "rollup -c",
2018-11-04 14:32:14 -07:00
"build": "rollup -c && npm run size",
"watch": "rollup -cw",
2018-11-04 15:28:54 -07:00
"size": "echo \"gzip size: $(gzip-size --raw $npm_package_minified_main) bytes\"",
2018-11-04 18:04:44 -07:00
"saucelabs": "yarn run test --browsers sl_firefox_latest,sl_chrome_latest,sl_safari,sl_firefox,sl_chrome,sl_edge,sl_ie_11,sl_ie_10,sl_ie_9"
2018-11-04 14:32:14 -07:00
},
2018-11-05 15:05:29 -07:00
"files": ["dist"],
2018-11-04 14:32:14 -07:00
"browserslist": [
"Chrome >= 22",
"Firefox >= 6",
"Opera >= 15",
"Safari >= 6.2",
"IE >= 9",
"IE 8"
],
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/splitjs"
}
}