MES手机端
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

66 righe
1.6 KiB

  1. {
  2. "name": "css-list-helpers",
  3. "version": "2.0.0",
  4. "description": "Helper methods for splitting CSS lists (e.g., spaces, commas).",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "scripts": {
  8. "clean": "rimraf coverage dist *.log css-list-helpers-*",
  9. "codecov": "codecov -f coverage/lcov.info",
  10. "prebuild": "npm run clean && npm run lint",
  11. "build": "tsc",
  12. "prebuild:watch": "npm run prebuild",
  13. "build:watch": "tsc --watch",
  14. "lint": "tslint --project tsconfig.test.json",
  15. "pretest": "npm run build -- --project tsconfig.test.json",
  16. "test": "nyc ava --verbose",
  17. "watch": "concurrently \"npm run build:watch\" \"npm test -- --watch\"",
  18. "prepack": "npm test && npm run build"
  19. },
  20. "nyc": {
  21. "lines": 100,
  22. "statements": 100,
  23. "functions": 100,
  24. "branches": 100,
  25. "include": [
  26. "dist/**/*.js"
  27. ],
  28. "exclude": [
  29. "dist/**/*.test.js"
  30. ],
  31. "reporter": [
  32. "lcov",
  33. "text"
  34. ],
  35. "cache": true,
  36. "all": true,
  37. "check-coverage": true
  38. },
  39. "repository": {
  40. "type": "git",
  41. "url": "git+https://github.com/jedmao/css-list-helpers.git"
  42. },
  43. "keywords": [
  44. "css",
  45. "list",
  46. "helpers",
  47. "split",
  48. "space",
  49. "comma"
  50. ],
  51. "author": "Jed Mao <jedmao@outlook.com>",
  52. "license": "MIT",
  53. "bugs": {
  54. "url": "https://github.com/jedmao/css-list-helpers/issues"
  55. },
  56. "homepage": "https://github.com/jedmao/css-list-helpers#readme",
  57. "devDependencies": {
  58. "ava": "^0.25.0",
  59. "concurrently": "^3.5.1",
  60. "nyc": "^11.7.1",
  61. "rimraf": "^2.6.2",
  62. "tslint": "^5.10.0",
  63. "typescript": "^2.8.3"
  64. }
  65. }