sass/package.json

50 lines
1.8 KiB
JSON
Raw Normal View History

{
"name": "sass",
"//": [
"This is used to track dependencies for the Github Actions tests run on ",
"this repository. For the official Sass npm package, see ",
2020-01-28 22:51:39 +00:00
"https://npmjs.org/package/sass"
],
2020-11-24 00:11:01 +00:00
"engines": {
2023-04-20 05:30:12 +00:00
"node": ">=14.0.0"
2020-11-24 00:11:01 +00:00
},
"scripts": {
"link-check": "npx ts-node test/link-check.ts",
"toc-check": "npx ts-node test/toc-check.ts",
"update-toc": "npx ts-node tool/update-toc.ts",
"js-api-doc-check": "npm run tangle && npx ts-node test/js-api-doc-check.ts",
"deprecations-check": "npx ts-node test/deprecations-check.ts",
"typedoc": "npm run tangle && npx typedoc --treatWarningsAsErrors js-api-doc/index.d.ts",
"tangle": "npx ts-node tool/tangle.ts",
"untangle": "npx ts-node tool/untangle.ts",
"sync-deprecations": "npx ts-node tool/sync-deprecations.ts",
"markdownlint": "npx markdownlint-cli2 '**/*.md' '*.md' --ignore 'node_modules/**'",
"fix": "npm run sync-deprecations && npm run update-toc && npm run markdownlint -- --fix && npm run tangle && gts fix && npm run untangle",
"test": "npm run deprecations-check && npm run tangle && gts lint && tsc --noEmit && npm run toc-check && npm run link-check && npm run js-api-doc-check && npm run typedoc"
},
"dependencies": {
"@types/diff": "^5.0.1",
"@types/glob": "^7.1.4",
"@types/marked": "^4.0.8",
2023-08-22 21:10:27 +00:00
"@types/node": "^14.11.2",
"@types/prettier": "^2.4.1",
"colors": "^1.3.3",
2021-10-26 20:28:33 +00:00
"diff": "^5.0.0",
"glob": "^10.0.0",
2023-08-22 21:10:27 +00:00
"gts": "^3.1.0",
2021-10-27 23:30:22 +00:00
"immutable": "^4.0.0",
2023-04-12 23:36:44 +00:00
"indent-string": "^4.0.0",
2023-04-20 05:30:12 +00:00
"markdown-link-check": "3.11.1",
2021-06-10 21:56:30 +00:00
"markdown-toc": "^1.2.0",
2023-08-22 21:10:27 +00:00
"markdownlint-cli2": "^0.8.1",
"marked": "^4.3.0",
"prettier": "^2.4.1",
"source-map-js": "^0.6.2",
"ts-dedent": "^2.2.0",
"ts-node": "^10.2.1",
2023-08-22 21:10:27 +00:00
"typedoc": "^0.24.7",
"typescript": "^5.0.4",
"yaml": "^2.2.1"
}
}