package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "bootstrap.native",
  3. "version": "2.0.27",
  4. "description": "Native JavaScript for Bootstrap, the sweetest JavaScript library without jQuery.",
  5. "main": "dist/bootstrap-native.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "help": "node lib/build.js --help",
  9. "build": "node lib/build.js -v 3 > dist/bootstrap-native.js && npm run build-min",
  10. "build-v4": "node lib/build.js -v 4 > dist/bootstrap-native-v4.js && npm run build-v4-min",
  11. "build-min": "node lib/build.js -m -v 3 > dist/bootstrap-native.min.js",
  12. "build-v4-min": "node lib/build.js -m -v 4 > dist/bootstrap-native-v4.min.js",
  13. "watch": "onchange \"lib/*/**\" -i -- npm run build && npm run build-v4"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/thednp/bootstrap.native.git"
  18. },
  19. "keywords": [
  20. "bootstrap.native",
  21. "bootstrap",
  22. "vanilla js",
  23. "native javascript",
  24. "vanilla javascript"
  25. ],
  26. "author": "dnp_theme",
  27. "license": "MIT",
  28. "bugs": {
  29. "url": "https://github.com/thednp/bootstrap.native/issues"
  30. },
  31. "homepage": "https://thednp.github.io/bootstrap.native/",
  32. "devDependencies": {
  33. "onchange": "^3.0.2",
  34. "uglify-js": "^2.7.3",
  35. "yargs": "^5.0.0"
  36. }
  37. }