54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"devDependencies": {
|
|
"babel-preset-env": "^1.6.1",
|
|
"chalk": "^2.4.1",
|
|
"fs-extra": "^6.0.0",
|
|
"html-minifier": "^3.5.15",
|
|
"jsdom": "^11.10.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",
|
|
"tap-spec": "^4.1.1",
|
|
"tape": "^4.9.0"
|
|
},
|
|
"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",
|
|
"test": "tape test/**/*.test.js | tap-spec"
|
|
},
|
|
"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": {}
|
|
}
|