components/package.json

45 lines
1.2 KiB
JSON
Raw Normal View History

2018-11-27 23:41:30 +01:00
{
"author": {
2019-03-18 18:34:55 +01:00
"email": "paul+github@lbry.com",
2018-11-27 23:41:30 +01:00
"name": "Paul Anthony Webb"
},
"bugs": {
"url": "https://github.com/lbryio/components/issues"
},
"description": "Styling for shared components across LBRY properties",
"devDependencies": {
2019-06-27 18:31:49 +02:00
"@inc/sasslint-config": "^2019.6.22",
"husky": "^2.7.0",
2018-11-27 23:41:30 +01:00
"npm-run-all": "^4.1.5",
2019-06-27 18:31:49 +02:00
"sass": "^1.22.1",
"sass-lint": "^1.13.1",
2019-06-10 20:13:41 +02:00
"updates": "^8.1.0"
2018-11-27 23:41:30 +01:00
},
2018-11-30 22:23:19 +01:00
"files": [
"dist/style.css",
"sass/*"
2018-11-30 22:23:19 +01:00
],
2018-11-27 23:41:30 +01:00
"homepage": "https://github.com/lbryio/components#readme",
"husky": {
"hooks": {
2019-03-05 22:11:05 +01:00
"pre-commit": "npm run test:sass && npm run sass:prod && git add -A :/"
}
},
2019-01-08 23:57:04 +01:00
"license": "BSD-3-Clause",
"main": "sass/",
2018-11-27 23:41:30 +01:00
"name": "@lbry/components",
"repository": {
"type": "git",
"url": "https://github.com/lbryio/components.git"
},
"scripts": {
"sass:dev": "sass --load-path=node_modules --watch sass:dist --style compressed",
"sass:prod": "sass --load-path=node_modules --update sass:dist --style compressed",
"test": "run-s test:*",
"test:dependencies": "updates --update ./",
2019-03-05 22:05:35 +01:00
"test:sass": "sass-lint --config ./node_modules/@inc/sasslint-config/config.json --verbose",
"watch": "npm run sass:dev"
2018-11-27 23:41:30 +01:00
},
2019-06-27 18:31:49 +02:00
"version": "2.7.4"
2018-11-27 23:41:30 +01:00
}