node-sass-json-functions
Version:
JSON encode and decode functions for node-sass.
109 lines (108 loc) • 3.31 kB
JSON
{
"name": "node-sass-json-functions",
"version": "4.1.0",
"description": "JSON encode and decode functions for node-sass.",
"license": "MIT",
"author": "Ivan Nikolić <niksy5@gmail.com> (http://ivannikolic.com)",
"sideEffects": false,
"exports": {
".": {
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"./package.json": "./package.json"
},
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"directories": {
"test": "test"
},
"files": [
"cjs/",
"esm/",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "rollup --config rollup.config.js",
"lint": "eslint '{index,lib/**/*,test/**/*}.js'",
"lint:types": "tsc",
"module-check": "node -e 'require(\"node-sass-json-functions\");' && node --input-type=module -e 'import \"node-sass-json-functions\";'",
"prepublishOnly": "npm run build",
"postpublish": "GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN github-release-from-changelog",
"prerelease": "npm run lint && npm run lint:types && npm run build && npm run module-check",
"release": "np --no-release-draft",
"test": "BABEL_ENV=test nyc mocha --require @babel/register --require esm 'test/**/*.js' && nyc check-coverage",
"test:watch": "nodemon -e js,scss --exec npm test",
"version": "if [ $(git rev-parse --abbrev-ref HEAD) == 'master' ]; then sed -i '' '/\\[unreleased\\]:/d' CHANGELOG.md && version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md; else echo; fi"
},
"dependencies": {
"immutable": "^4.0.0",
"is-plain-obj": "^3.0.0",
"parse-color": "^1.0.0",
"parse-css-dimension": "^1.1.0",
"postcss-values-parser": "^6.0.2",
"rgb-hex": "^3.0.0",
"round-to": "^5.0.0",
"shorten-css-hex": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.0.0",
"@rollup/plugin-babel": "^5.2.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.3.0",
"@types/parse-color": "^1.0.1",
"@types/sass-true": "^6.0.1",
"babel-plugin-istanbul": "^6.0.0",
"changelog-verify": "^1.1.2",
"core-js": "^2.6.5",
"cpy": "^8.1.2",
"eslint": "^8.5.0",
"eslint-config-nitpick": "^11.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"esm": "^3.0.51",
"execa": "^5.1.1",
"github-release-from-changelog": "^2.1.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"mocha": "^8.4.0",
"nodemon": "^2.0.6",
"np": "^7.6.0",
"nyc": "^15.1.0",
"prettier": "^2.4.0",
"rollup": "^2.32.1",
"sass": "^1.67.0",
"sass-true": "^6.0.1",
"typescript": "^4.3.5",
"version-changelog": "^3.1.1"
},
"peerDependencies": {
"sass": ">=1.64"
},
"engines": {
"node": ">=12.22"
},
"keywords": [
"decode",
"encode",
"functions",
"json",
"node",
"node-sass",
"sass"
],
"repository": {
"type": "git",
"url": "git+https://github.com/niksy/node-sass-json-functions.git"
},
"bugs": {
"url": "https://github.com/niksy/node-sass-json-functions/issues"
},
"homepage": "https://github.com/niksy/node-sass-json-functions#readme"
}