-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@sayan_shankhari/sem_ver",
"version": "3.1.0",
"description": "Semantic Version w.r.t. Git Log",
"publishConfig": {
"access": "public"
},
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node app &",
"stop": "killall node",
"dev": "nodemon src/index.js",
"test": "npm link && cd test && npm link @sayan_shankhari/sem_ver && npm test",
"clean": "npm stop && rm -rf node_modules",
"restart": "npm stop && npm start",
"reboot": "npm run clean && npm install && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheScienceUniverse/sem_ver.git"
},
"keywords": [
"semver",
"sem_ver",
"project-version",
"semantic-version",
"conventional-commits"
],
"author": "sayan_shankhari",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheScienceUniverse/sem_ver/issues"
},
"homepage": "https://github.com/TheScienceUniverse/sem_ver#readme",
"dependencies": {
"dotenv": "^17.2.3",
"package.json": "^0.0.0"
},
"devDependencies": {
"nodemon": "^3.1.11"
}
}