Files
30-seconds-of-code/package.json
Angelos Chalaris a43ed86771 Added some analysis to snippets
New script that generates two JSON files with tokenization data about snippets (does not run on Travis). Data can be used for visualizations and possibly creating a complexity index for the snippets.
2018-06-23 12:38:37 +03:00

66 lines
1.7 KiB
JSON

{
"devDependencies": {
"babel-preset-env": "^1.6.1",
"chalk": "^2.4.1",
"fs-extra": "^6.0.0",
"html-minifier": "^3.5.15",
"jest": "^23.1.0",
"jest-tap-reporter": "^1.9.0",
"markdown-it": "^8.4.1",
"mini.css": "^2.3.7",
"node-sass": "^4.9.0",
"octicons": "^7.2.0",
"prettier": "^1.12.1",
"prismjs": "^1.14.0",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-babel-minify": "^4.0.0",
"semistandard": "^12.0.1"
},
"name": "30-seconds-of-code",
"description": "A collection of useful JavaScript snippets.",
"version": "0.0.3",
"main": "dist/_30s.js",
"module": "dist/_30s.esm.js",
"scripts": {
"builder": "node ./scripts/build.js",
"linter": "node ./scripts/lint.js",
"tagger": "node ./scripts/tag.js",
"webber": "node ./scripts/web.js",
"tester": "node ./scripts/tdd.js",
"extractor": "node ./scripts/extract.js",
"packager": "node ./scripts/module.js",
"localizer": "node ./scripts/localize.js",
"analyzer": "node ./scripts/analyze.js",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chalarangelo/30-seconds-of-code.git"
},
"keywords": [
"javascript",
"snippets",
"list"
],
"author": "Chalarangelo (chalarangelo@gmail.com)",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/Chalarangelo/30-seconds-of-code/issues"
},
"homepage": "https://github.com/Chalarangelo/30-seconds-of-code#readme",
"dependencies": {},
"jest": {
"reporters": [
[
"jest-tap-reporter",
{
"logLevel": "INFO",
"showInternalStackTraces": false,
"filePath": "test/testlog"
}
]
]
}
}