Advertisement
mbruns

DevDependencies and dependencies syntax in Node package.json

Jun 11th, 2022
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.27 KB | None | 0 0
  1. /*
  2. DevDependencies and dependencies syntax in Node package.json =
  3. */
  4.  
  5. "name": "my_package",
  6. "version": "1.0.0",
  7. "dependencies": {
  8.   "my_dep": "^1.0.0",
  9.   "another_dep": "~2.2.0"
  10. },
  11. "devDependencies" : {
  12.   "my_test_framework": "^3.1.0".
  13.   "another_dev_dep": "1.0.0 - 1.2.0"
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement