stylelint-taro-rn
Version:
A collection of React Native specific rules for stylelint
72 lines • 1.44 kB
JSON
{
"name": "stylelint-taro-rn",
"description": "A collection of React Native specific rules for stylelint",
"version": "3.6.37",
"main": "dist/index.js",
"files": [
"dist",
"src",
"CHANGELOG.md",
"README.md",
"!**/__tests__"
],
"keywords": [
"css",
"csslint",
"lint",
"linter",
"stylelint",
"stylelint-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NervJS/taro.git"
},
"author": "O2Team",
"license": "MIT",
"engines": {
"node": ">=6"
},
"jest": {
"clearMocks": true,
"collectCoverage": false,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageDirectory": "./.coverage/",
"coverageReporters": [
"lcov",
"text"
],
"coverageThreshold": {
"global": {
"branches": 75,
"functions": 75,
"lines": 75,
"statements": 75
}
},
"setupFiles": [
"./jest-setup.js"
],
"testEnvironment": "node",
"roots": [
"src"
],
"testRegex": ".*\\.test\\.js$|src/.*/__tests__/.*\\.js$"
},
"dependencies": {
"react-native-known-styling-properties": "^1.0.4"
},
"devDependencies": {
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"jest-environment-node": "^29.5.0",
"postcss": "^8.4.18",
"postcss-less": "^6.0.0"
},
"scripts": {
"build": "babel src --out-dir ./dist",
"test": "jest"
}
}