sass/package.json
Natalie Weizenbaum 2f3c06fde0 Use a custom prettier parser to remove comments in js-api-doc-check
The strip-comments package is broken by
jonschlinkert/strip-comments#69 and doesn't seem to be maintained
anymore.
2021-10-04 14:18:13 -07:00

41 lines
1.3 KiB
JSON

{
"name": "sass",
"//": [
"This is used to track dependencies for the Github Actions tests run on ",
"this repository. For the official Sass npm package, see ",
"https://npmjs.org/package/sass"
],
"engines": {
"node": ">=14.0.0 <17.0.0"
},
"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": "npx ts-node test/js-api-doc-check.ts",
"typedoc": "npx typedoc --treatWarningsAsErrors js-api-doc/index.d.ts",
"fix": "gts fix",
"test": "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/prettier": "^2.4.1",
"colors": "^1.3.3",
"diff": "^4.0.1",
"glob": "^7.2.0",
"immutable": "^4.0.0-rc.12",
"markdown-link-check": "git+https://sassbot@github.com/nex3/markdown-link-check.git#check-references",
"markdown-toc": "^1.2.0",
"prettier": "^2.4.1",
"source-map-js": "^0.6.2",
"ts-node": "^10.2.1",
"typedoc": "^0.22.4"
},
"devDependencies": {
"@types/node": "^14.11.2",
"gts": "^3.1.0",
"typescript": "^4.0.3"
}
}