53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"name": "@csstools/sass-import-resolve",
|
|
"version": "1.0.0",
|
|
"description": "An algorithm for resolving imports in Sass",
|
|
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
|
|
"license": "CC0-1.0",
|
|
"repository": "jonathantneal/sass-import-resolve",
|
|
"homepage": "https://github.com/jonathantneal/sass-import-resolve#readme",
|
|
"bugs": "https://github.com/jonathantneal/sass-import-resolve/issues",
|
|
"main": "index.js",
|
|
"module": "index.mjs",
|
|
"files": [
|
|
"index.mjs",
|
|
"index.js"
|
|
],
|
|
"scripts": {
|
|
"prepublishOnly": "npm start",
|
|
"start": "babel index.mjs --presets=env --plugins=add-module-exports --out-file index.js",
|
|
"test": "npm start && npm run test:lint && npm run test:tape",
|
|
"test:lint": "eslint index.mjs --cache --ignore-pattern .gitignore",
|
|
"test:tape": "node .tape"
|
|
},
|
|
"engines": {
|
|
"node": ">=4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.26.0",
|
|
"babel-plugin-add-module-exports": "^0.2.1",
|
|
"babel-preset-env": "^1.6.1",
|
|
"eslint": "^4.12.1",
|
|
"eslint-config-dev": "^2.0.0"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "dev",
|
|
"rules": {
|
|
"consistent-return": 0,
|
|
"max-params": 0,
|
|
"no-param-reassign": 0
|
|
}
|
|
},
|
|
"keywords": [
|
|
"sass",
|
|
"spec",
|
|
"imports",
|
|
"resolve",
|
|
"algorithm",
|
|
"external",
|
|
"files",
|
|
"style",
|
|
"sheets"
|
|
]
|
|
}
|