updated sys and created publi

This commit is contained in:
Bachir Soussi Chiadmi
2017-12-21 18:09:49 +01:00
parent 2a6e2ff863
commit cefd1c2ad0
9509 changed files with 744901 additions and 32263 deletions
+15 -59
View File
@@ -1,62 +1,33 @@
{
"_args": [
[
{
"raw": "balanced-match@^1.0.0",
"scope": null,
"escapedName": "balanced-match",
"name": "balanced-match",
"rawSpec": "^1.0.0",
"spec": ">=1.0.0 <2.0.0",
"type": "range"
},
"/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/node-sass/node_modules/brace-expansion"
],
[
{
"raw": "balanced-match@^1.0.0",
"scope": null,
"escapedName": "balanced-match",
"name": "balanced-match",
"rawSpec": "^1.0.0",
"spec": ">=1.0.0 <2.0.0",
"type": "range"
},
"/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/sass-graph/node_modules/brace-expansion"
"balanced-match@1.0.0",
"/mnt/Data/bach/Documents/ola/OLA#5/ola5doc/sys"
]
],
"_from": "balanced-match@^1.0.0",
"_development": true,
"_from": "balanced-match@1.0.0",
"_id": "balanced-match@1.0.0",
"_inCache": true,
"_inBundle": false,
"_integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
"_location": "/sass-graph/balanced-match",
"_nodeVersion": "7.8.0",
"_npmOperationalInternal": {
"host": "s3://npm-registry-packages",
"tmp": "tmp/balanced-match-1.0.0.tgz_1497251909645_0.8755026108119637"
},
"_npmUser": {
"name": "juliangruber",
"email": "julian@juliangruber.com"
},
"_npmVersion": "4.2.0",
"_phantomChildren": {},
"_requested": {
"raw": "balanced-match@^1.0.0",
"scope": null,
"escapedName": "balanced-match",
"type": "version",
"registry": true,
"raw": "balanced-match@1.0.0",
"name": "balanced-match",
"rawSpec": "^1.0.0",
"spec": ">=1.0.0 <2.0.0",
"type": "range"
"escapedName": "balanced-match",
"rawSpec": "1.0.0",
"saveSpec": null,
"fetchSpec": "1.0.0"
},
"_requiredBy": [
"/sass-graph/brace-expansion"
],
"_resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
"_shasum": "89b4d199ab2bee49de164ea02b89ce462d71b767",
"_shrinkwrap": null,
"_spec": "balanced-match@^1.0.0",
"_where": "/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/sass-graph/node_modules/brace-expansion",
"_spec": "1.0.0",
"_where": "/mnt/Data/bach/Documents/ola/OLA#5/ola5doc/sys",
"author": {
"name": "Julian Gruber",
"email": "mail@juliangruber.com",
@@ -71,12 +42,6 @@
"matcha": "^0.7.0",
"tape": "^4.6.0"
},
"directories": {},
"dist": {
"shasum": "89b4d199ab2bee49de164ea02b89ce462d71b767",
"tarball": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"
},
"gitHead": "d701a549a7653a874eebce7eca25d3577dc868ac",
"homepage": "https://github.com/juliangruber/balanced-match",
"keywords": [
"match",
@@ -87,16 +52,7 @@
],
"license": "MIT",
"main": "index.js",
"maintainers": [
{
"name": "juliangruber",
"email": "julian@juliangruber.com"
}
],
"name": "balanced-match",
"optionalDependencies": {},
"readme": "# balanced-match\n\nMatch balanced string pairs, like `{` and `}` or `<b>` and `</b>`. Supports regular expressions as well!\n\n[![build status](https://secure.travis-ci.org/juliangruber/balanced-match.svg)](http://travis-ci.org/juliangruber/balanced-match)\n[![downloads](https://img.shields.io/npm/dm/balanced-match.svg)](https://www.npmjs.org/package/balanced-match)\n\n[![testling badge](https://ci.testling.com/juliangruber/balanced-match.png)](https://ci.testling.com/juliangruber/balanced-match)\n\n## Example\n\nGet the first matching pair of braces:\n\n```js\nvar balanced = require('balanced-match');\n\nconsole.log(balanced('{', '}', 'pre{in{nested}}post'));\nconsole.log(balanced('{', '}', 'pre{first}between{second}post'));\nconsole.log(balanced(/\\s+\\{\\s+/, /\\s+\\}\\s+/, 'pre { in{nest} } post'));\n```\n\nThe matches are:\n\n```bash\n$ node example.js\n{ start: 3, end: 14, pre: 'pre', body: 'in{nested}', post: 'post' }\n{ start: 3,\n end: 9,\n pre: 'pre',\n body: 'first',\n post: 'between{second}post' }\n{ start: 3, end: 17, pre: 'pre', body: 'in{nest}', post: 'post' }\n```\n\n## API\n\n### var m = balanced(a, b, str)\n\nFor the first non-nested matching pair of `a` and `b` in `str`, return an\nobject with those keys:\n\n* **start** the index of the first match of `a`\n* **end** the index of the matching `b`\n* **pre** the preamble, `a` and `b` not included\n* **body** the match, `a` and `b` not included\n* **post** the postscript, `a` and `b` not included\n\nIf there's no match, `undefined` will be returned.\n\nIf the `str` contains more `a` than `b` / there are unmatched pairs, the first match that was closed will be used. For example, `{{a}` will match `['{', 'a', '']` and `{a}}` will match `['', 'a', '}']`.\n\n### var r = balanced.range(a, b, str)\n\nFor the first non-nested matching pair of `a` and `b` in `str`, return an\narray with indexes: `[ <a index>, <b index> ]`.\n\nIf there's no match, `undefined` will be returned.\n\nIf the `str` contains more `a` than `b` / there are unmatched pairs, the first match that was closed will be used. For example, `{{a}` will match `[ 1, 3 ]` and `{a}}` will match `[0, 2]`.\n\n## Installation\n\nWith [npm](https://npmjs.org) do:\n\n```bash\nnpm install balanced-match\n```\n\n## License\n\n(MIT)\n\nCopyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/juliangruber/balanced-match.git"
+15 -63
View File
@@ -1,62 +1,33 @@
{
"_args": [
[
{
"raw": "brace-expansion@^1.1.7",
"scope": null,
"escapedName": "brace-expansion",
"name": "brace-expansion",
"rawSpec": "^1.1.7",
"spec": ">=1.1.7 <2.0.0",
"type": "range"
},
"/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/node-sass/node_modules/minimatch"
],
[
{
"raw": "brace-expansion@^1.1.7",
"scope": null,
"escapedName": "brace-expansion",
"name": "brace-expansion",
"rawSpec": "^1.1.7",
"spec": ">=1.1.7 <2.0.0",
"type": "range"
},
"/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/sass-graph/node_modules/minimatch"
"brace-expansion@1.1.8",
"/mnt/Data/bach/Documents/ola/OLA#5/ola5doc/sys"
]
],
"_from": "brace-expansion@^1.1.7",
"_development": true,
"_from": "brace-expansion@1.1.8",
"_id": "brace-expansion@1.1.8",
"_inCache": true,
"_inBundle": false,
"_integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=",
"_location": "/sass-graph/brace-expansion",
"_nodeVersion": "7.8.0",
"_npmOperationalInternal": {
"host": "s3://npm-registry-packages",
"tmp": "tmp/brace-expansion-1.1.8.tgz_1497251980593_0.6575565172825009"
},
"_npmUser": {
"name": "juliangruber",
"email": "julian@juliangruber.com"
},
"_npmVersion": "4.2.0",
"_phantomChildren": {},
"_requested": {
"raw": "brace-expansion@^1.1.7",
"scope": null,
"escapedName": "brace-expansion",
"type": "version",
"registry": true,
"raw": "brace-expansion@1.1.8",
"name": "brace-expansion",
"rawSpec": "^1.1.7",
"spec": ">=1.1.7 <2.0.0",
"type": "range"
"escapedName": "brace-expansion",
"rawSpec": "1.1.8",
"saveSpec": null,
"fetchSpec": "1.1.8"
},
"_requiredBy": [
"/sass-graph/minimatch"
],
"_resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz",
"_shasum": "c07b211c7c952ec1f8efd51a77ef0d1d3990a292",
"_shrinkwrap": null,
"_spec": "brace-expansion@^1.1.7",
"_where": "/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/sass-graph/node_modules/minimatch",
"_spec": "1.1.8",
"_where": "/mnt/Data/bach/Documents/ola/OLA#5/ola5doc/sys",
"author": {
"name": "Julian Gruber",
"email": "mail@juliangruber.com",
@@ -74,30 +45,11 @@
"matcha": "^0.7.0",
"tape": "^4.6.0"
},
"directories": {},
"dist": {
"shasum": "c07b211c7c952ec1f8efd51a77ef0d1d3990a292",
"tarball": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz"
},
"gitHead": "8f59e68bd5c915a0d624e8e39354e1ccf672edf6",
"homepage": "https://github.com/juliangruber/brace-expansion",
"keywords": [],
"license": "MIT",
"main": "index.js",
"maintainers": [
{
"name": "juliangruber",
"email": "julian@juliangruber.com"
},
{
"name": "isaacs",
"email": "isaacs@npmjs.com"
}
],
"name": "brace-expansion",
"optionalDependencies": {},
"readme": "# brace-expansion\n\n[Brace expansion](https://www.gnu.org/software/bash/manual/html_node/Brace-Expansion.html), \nas known from sh/bash, in JavaScript.\n\n[![build status](https://secure.travis-ci.org/juliangruber/brace-expansion.svg)](http://travis-ci.org/juliangruber/brace-expansion)\n[![downloads](https://img.shields.io/npm/dm/brace-expansion.svg)](https://www.npmjs.org/package/brace-expansion)\n[![Greenkeeper badge](https://badges.greenkeeper.io/juliangruber/brace-expansion.svg)](https://greenkeeper.io/)\n\n[![testling badge](https://ci.testling.com/juliangruber/brace-expansion.png)](https://ci.testling.com/juliangruber/brace-expansion)\n\n## Example\n\n```js\nvar expand = require('brace-expansion');\n\nexpand('file-{a,b,c}.jpg')\n// => ['file-a.jpg', 'file-b.jpg', 'file-c.jpg']\n\nexpand('-v{,,}')\n// => ['-v', '-v', '-v']\n\nexpand('file{0..2}.jpg')\n// => ['file0.jpg', 'file1.jpg', 'file2.jpg']\n\nexpand('file-{a..c}.jpg')\n// => ['file-a.jpg', 'file-b.jpg', 'file-c.jpg']\n\nexpand('file{2..0}.jpg')\n// => ['file2.jpg', 'file1.jpg', 'file0.jpg']\n\nexpand('file{0..4..2}.jpg')\n// => ['file0.jpg', 'file2.jpg', 'file4.jpg']\n\nexpand('file-{a..e..2}.jpg')\n// => ['file-a.jpg', 'file-c.jpg', 'file-e.jpg']\n\nexpand('file{00..10..5}.jpg')\n// => ['file00.jpg', 'file05.jpg', 'file10.jpg']\n\nexpand('{{A..C},{a..c}}')\n// => ['A', 'B', 'C', 'a', 'b', 'c']\n\nexpand('ppp{,config,oe{,conf}}')\n// => ['ppp', 'pppconfig', 'pppoe', 'pppoeconf']\n```\n\n## API\n\n```js\nvar expand = require('brace-expansion');\n```\n\n### var expanded = expand(str)\n\nReturn an array of all possible and valid expansions of `str`. If none are\nfound, `[str]` is returned.\n\nValid expansions are:\n\n```js\n/^(.*,)+(.+)?$/\n// {a,b,...}\n```\n\nA comma seperated list of options, like `{a,b}` or `{a,{b,c}}` or `{,a,}`.\n\n```js\n/^-?\\d+\\.\\.-?\\d+(\\.\\.-?\\d+)?$/\n// {x..y[..incr]}\n```\n\nA numeric sequence from `x` to `y` inclusive, with optional increment.\nIf `x` or `y` start with a leading `0`, all the numbers will be padded\nto have equal length. Negative numbers and backwards iteration work too.\n\n```js\n/^-?\\d+\\.\\.-?\\d+(\\.\\.-?\\d+)?$/\n// {x..y[..incr]}\n```\n\nAn alphabetic sequence from `x` to `y` inclusive, with optional increment.\n`x` and `y` must be exactly one character, and if given, `incr` must be a\nnumber.\n\nFor compatibility reasons, the string `${` is not eligible for brace expansion.\n\n## Installation\n\nWith [npm](https://npmjs.org) do:\n\n```bash\nnpm install brace-expansion\n```\n\n## Contributors\n\n- [Julian Gruber](https://github.com/juliangruber)\n- [Isaac Z. Schlueter](https://github.com/isaacs)\n\n## License\n\n(MIT)\n\nCopyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/juliangruber/brace-expansion.git"
File diff suppressed because one or more lines are too long
+15 -64
View File
@@ -1,62 +1,33 @@
{
"_args": [
[
{
"raw": "lodash@~4.17.4",
"scope": null,
"escapedName": "lodash",
"name": "lodash",
"rawSpec": "~4.17.4",
"spec": ">=4.17.4 <4.18.0",
"type": "range"
},
"/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/node-sass/node_modules/globule"
],
[
{
"raw": "lodash@^4.0.0",
"scope": null,
"escapedName": "lodash",
"name": "lodash",
"rawSpec": "^4.0.0",
"spec": ">=4.0.0 <5.0.0",
"type": "range"
},
"/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/sass-graph"
"lodash@4.17.4",
"/mnt/Data/bach/Documents/ola/OLA#5/ola5doc/sys"
]
],
"_from": "lodash@^4.0.0",
"_development": true,
"_from": "lodash@4.17.4",
"_id": "lodash@4.17.4",
"_inCache": true,
"_inBundle": false,
"_integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=",
"_location": "/sass-graph/lodash",
"_nodeVersion": "7.2.1",
"_npmOperationalInternal": {
"host": "packages-12-west.internal.npmjs.com",
"tmp": "tmp/lodash-4.17.4.tgz_1483223634314_0.5332164366263896"
},
"_npmUser": {
"name": "jdalton",
"email": "john.david.dalton@gmail.com"
},
"_npmVersion": "2.15.11",
"_phantomChildren": {},
"_requested": {
"raw": "lodash@^4.0.0",
"scope": null,
"escapedName": "lodash",
"type": "version",
"registry": true,
"raw": "lodash@4.17.4",
"name": "lodash",
"rawSpec": "^4.0.0",
"spec": ">=4.0.0 <5.0.0",
"type": "range"
"escapedName": "lodash",
"rawSpec": "4.17.4",
"saveSpec": null,
"fetchSpec": "4.17.4"
},
"_requiredBy": [
"/sass-graph"
],
"_resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
"_shasum": "78203a4d1c328ae1d86dca6460e369b57f4055ae",
"_shrinkwrap": null,
"_spec": "lodash@^4.0.0",
"_where": "/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/sass-graph",
"_spec": "4.17.4",
"_where": "/mnt/Data/bach/Documents/ola/OLA#5/ola5doc/sys",
"author": {
"name": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
@@ -77,14 +48,7 @@
"url": "https://mathiasbynens.be/"
}
],
"dependencies": {},
"description": "Lodash modular utilities.",
"devDependencies": {},
"directories": {},
"dist": {
"shasum": "78203a4d1c328ae1d86dca6460e369b57f4055ae",
"tarball": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"
},
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
"keywords": [
@@ -94,20 +58,7 @@
],
"license": "MIT",
"main": "lodash.js",
"maintainers": [
{
"name": "jdalton",
"email": "john.david.dalton@gmail.com"
},
{
"name": "mathias",
"email": "mathias@qiwi.be"
}
],
"name": "lodash",
"optionalDependencies": {},
"readme": "# lodash v4.17.4\n\nThe [Lodash](https://lodash.com/) library exported as [Node.js](https://nodejs.org/) modules.\n\n## Installation\n\nUsing npm:\n```shell\n$ npm i -g npm\n$ npm i --save lodash\n```\n\nIn Node.js:\n```js\n// Load the full build.\nvar _ = require('lodash');\n// Load the core build.\nvar _ = require('lodash/core');\n// Load the FP build for immutable auto-curried iteratee-first data-last methods.\nvar fp = require('lodash/fp');\n\n// Load method categories.\nvar array = require('lodash/array');\nvar object = require('lodash/fp/object');\n\n// Cherry-pick methods for smaller browserify/rollup/webpack bundles.\nvar at = require('lodash/at');\nvar curryN = require('lodash/fp/curryN');\n```\n\nSee the [package source](https://github.com/lodash/lodash/tree/4.17.4-npm) for more details.\n\n**Note:**<br>\nInstall [n_](https://www.npmjs.com/package/n_) for Lodash use in the Node.js < 6 REPL.\n\n## Support\n\nTested in Chrome 54-55, Firefox 49-50, IE 11, Edge 14, Safari 9-10, Node.js 6-7, & PhantomJS 2.1.1.<br>\nAutomated [browser](https://saucelabs.com/u/lodash) & [CI](https://travis-ci.org/lodash/lodash/) test runs are available.\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/lodash/lodash.git"
File diff suppressed because one or more lines are too long
+15 -50
View File
@@ -1,32 +1,16 @@
{
"_args": [
[
{
"raw": "sass-graph@^2.1.1",
"scope": null,
"escapedName": "sass-graph",
"name": "sass-graph",
"rawSpec": "^2.1.1",
"spec": ">=2.1.1 <3.0.0",
"type": "range"
},
"/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/node-sass"
"sass-graph@2.2.4",
"/mnt/Data/bach/Documents/ola/OLA#5/ola5doc/sys"
]
],
"_from": "sass-graph@>=2.1.1 <3.0.0",
"_development": true,
"_from": "sass-graph@2.2.4",
"_id": "sass-graph@2.2.4",
"_inCache": true,
"_inBundle": false,
"_integrity": "sha1-E/vWPNHK8JCLn9k0dq1DpR0eC0k=",
"_location": "/sass-graph",
"_nodeVersion": "7.6.0",
"_npmOperationalInternal": {
"host": "packages-12-west.internal.npmjs.com",
"tmp": "tmp/sass-graph-2.2.4.tgz_1495012724834_0.36490066698752344"
},
"_npmUser": {
"name": "xzyfer",
"email": "xzyfer@gmail.com"
},
"_npmVersion": "4.1.2",
"_phantomChildren": {
"concat-map": "0.0.1",
"fs.realpath": "1.0.0",
@@ -36,22 +20,21 @@
"path-is-absolute": "1.0.1"
},
"_requested": {
"raw": "sass-graph@^2.1.1",
"scope": null,
"escapedName": "sass-graph",
"type": "version",
"registry": true,
"raw": "sass-graph@2.2.4",
"name": "sass-graph",
"rawSpec": "^2.1.1",
"spec": ">=2.1.1 <3.0.0",
"type": "range"
"escapedName": "sass-graph",
"rawSpec": "2.2.4",
"saveSpec": null,
"fetchSpec": "2.2.4"
},
"_requiredBy": [
"/node-sass"
],
"_resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.4.tgz",
"_shasum": "13fbd63cd1caf0908b9fd93476ad43a51d1e0b49",
"_shrinkwrap": null,
"_spec": "sass-graph@^2.1.1",
"_where": "/mnt/Data/bach/Documents/ola/OLA#4/OLA#4DOC/sys/node_modules/node-sass",
"_spec": "2.2.4",
"_where": "/mnt/Data/bach/Documents/ola/OLA#5/ola5doc/sys",
"author": {
"name": "xzyfer"
},
@@ -78,16 +61,11 @@
"directories": {
"bin": "./bin"
},
"dist": {
"shasum": "13fbd63cd1caf0908b9fd93476ad43a51d1e0b49",
"tarball": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.4.tgz"
},
"files": [
"bin",
"parse-imports.js",
"sass-graph.js"
],
"gitHead": "f6aa19580600d9245516e20d588339824dacdb95",
"homepage": "https://github.com/xzyfer/sass-graph#readme",
"keywords": [
"sass",
@@ -95,20 +73,7 @@
],
"license": "MIT",
"main": "sass-graph.js",
"maintainers": [
{
"name": "lox",
"email": "lachlan@ljd.cc"
},
{
"name": "xzyfer",
"email": "xzyfer@gmail.com"
}
],
"name": "sass-graph",
"optionalDependencies": {},
"readme": "# Sass Graph\n\nParses Sass files in a directory and exposes a graph of dependencies\n\n[![Build Status](https://travis-ci.org/xzyfer/sass-graph.svg?branch=master)](https://travis-ci.org/xzyfer/sass-graph)\n[![Coverage Status](https://coveralls.io/repos/github/xzyfer/sass-graph/badge.svg?branch=master)](https://coveralls.io/github/xzyfer/sass-graph?branch=master)\n[![npm version](https://badge.fury.io/js/sass-graph.svg)](http://badge.fury.io/js/sass-graph)\n[![Dependency Status](https://david-dm.org/xzyfer/sass-graph.svg?theme=shields.io)](https://david-dm.org/xzyfer/sass-graph)\n[![devDependency Status](https://david-dm.org/xzyfer/sass-graph/dev-status.svg?theme=shields.io)](https://david-dm.org/xzyfer/sass-graph#info=devDependencies)\n\n## Install\n\nInstall with [npm](https://npmjs.org/package/sass-graph)\n\n```\nnpm install --save-dev sass-graph\n```\n\n## Usage\n\nUsage as a Node library:\n\n```js\nvar sassGraph = require('./sass-graph');\n```\n\nUsage as a command line tool:\n\nThe command line tool will parse a graph and then either display ancestors, descendents or both.\n\n```\n$ ./bin/sassgraph --help\nUsage: bin/sassgraph <command> [options] <dir> [file]\n\nCommands:\n ancestors Output the ancestors\n descendents Output the descendents\n\nOptions:\n -I, --load-path Add directories to the sass load path\n -e, --extensions File extensions to include in the graph\n -j, --json Output the index in json\n -h, --help Show help\n -v, --version Show version number\n\nExamples:\n ./bin/sassgraph descendents test/fixtures test/fixtures/a.scss\n /path/to/test/fixtures/b.scss\n /path/to/test/fixtures/_c.scss\n```\n\n## API\n\n#### parseDir\n\nParses a directory and builds a dependency graph of all requested file extensions.\n\n#### parseFile\n\nParses a file and builds its dependency graph.\n\n## Options\n\n#### loadPaths\n\nType: `Array`\nDefault: `[process.cwd]`\n\nDirectories to use when resolved `@import` directives.\n\n#### extensions\n\nType: `Array`\nDefault: `['scss', 'css', 'sass']`\n\nFile types to be parsed.\n\n#### follow\n\nType: `Boolean`\nDefault: `false`\n\nFollow symbolic links.\n\n## Example\n\n```js\nvar sassGraph = require('./sass-graph');\nconsole.log(sassGraph.parseDir('test/fixtures'));\n\n//{ index: {,\n// '/path/to/test/fixtures/a.scss': {\n// imports: ['b.scss'],\n// importedBy: [],\n// },\n// '/path/to/test/fixtures/b.scss': {\n// imports: ['_c.scss'],\n// importedBy: ['a.scss'],\n// },\n// '/path/to/test/fixtures/_c.scss': {\n// imports: [],\n// importedBy: ['b/scss'],\n// },\n//}}\n```\n\n## Running Mocha tests\n\nYou can run the tests by executing the following commands:\n\n```\nnpm install\nnpm test\n```\n\n## Authors\n\nSass graph was originally written by [Lachlan Donald](http://lachlan.me).\nIt is now maintained by [Michael Mifsud](http://twitter.com/xzyfer).\n\n## License\n\nMIT\n",
"readmeFilename": "readme.md",
"repository": {
"type": "git",
"url": "git+https://github.com/xzyfer/sass-graph.git"