rivet-core
Version:
Indiana University design system
80 lines (79 loc) • 2.6 kB
JSON
{
"name": "rivet-core",
"description": "Indiana University design system",
"homepage": "https://rivet.iu.edu",
"version": "2.9.1",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/indiana-university/rivet-source"
},
"bugs": {
"url": "https://github.com/indiana-university/rivet-source/issues",
"email": "rivet@iu.edu"
},
"main": "./js/rivet-umd.js",
"module": "./js/rivet-esm.js",
"unpkg": "./js/rivet.min.js",
"exports": {
".": {
"import": "./js/rivet-esm.js",
"require": "./js/rivet-umd.js",
"default": "./js/rivet-esm.js"
}
},
"scripts": {
"start": "npm-run-all build serve",
"serve": "run-p watch eleventy",
"eleventy": "ELEVENTY_ENV=dev npx eleventy --serve",
"build": "npm-run-all clean compile-tokens compile-sass compile-js move-example",
"watch": "run-p watch-js watch-sass",
"clean": "rimraf ./css ./js ./sass ./tokens ./rivet.zip ./index.html",
"compile-tokens": "node ./tasks/compile-tokens.js",
"compile-sass": "node ./tasks/compile-sass.js",
"compile-js": "node ./tasks/compile-js.js",
"watch-js": "node ./tasks/watch-js.js",
"watch-sass": "sass --watch ./src/sass/rivet.scss ./dist/css/rivet.css",
"move-example": "node ./tasks/move-example.js",
"lint": "standard 'src/js'",
"changelog": "node ./tasks/generate-changelog.js",
"zip": "npm run build && zip -r rivet.zip css js sass tokens index.html",
"new-component": "node ./tasks/source-new-component.js",
"sandbox-new-component": "node ./tasks/sandbox-new-component.js",
"sandbox-deploy:test": "sh deploy-sandbox.sh",
"sandbox-deploy:live": "sh deploy-sandbox.sh -P"
},
"files": [
"css/**/*",
"sass/**/*",
"js/**/*",
"tokens/**/*",
"index.html"
],
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@octokit/rest": "^17.11.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^11.2.0",
"autoprefixer": "^10.4.14",
"browser-sync": "^2.27.7",
"fs-jetpack": "^5.0.0",
"inert-polyfill": "^0.2.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.17",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.49.0",
"standard": "^16.0.4",
"style-dictionary": "^3.1.1"
},
"dependencies": {
"uninstall": "0.0.0",
"wicked-elements": "^3.1.1"
}
}