Skip to content

Commit 7a6c55e

Browse files
committed
feat: add npm and 'standard-version' dependency
1 parent 05a7ba9 commit 7a6c55e

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# Cruft
22
.DS_Store
33
npm-debug.log
4-
.idea
4+
.idea
5+
6+
# Dependency directories
7+
node_modules/
8+
9+
# Misc
10+
package-lock.json

package.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "javascript-interview-questions",
3+
"version": "1.0.0",
4+
"description": "> Click :star:if you like the project and follow [@SudheerJonna](https://twitter.com/SudheerJonna) for more updates. Coding questions available [here](#coding-exercise). PDF and Epub versions available at [actions tab](https://github.com/sudheerj/JavaScript-Interview-Questions/actions).",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1",
8+
"release": "standard-version"
9+
},
10+
"keywords": [],
11+
"author": "",
12+
"license": "ISC",
13+
"devDependencies": {
14+
"standard-version": "^9.5.0"
15+
}
16+
}

0 commit comments

Comments
 (0)