-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 927 Bytes
/
package.json
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
{
"name": "@nice-labs/git-rev",
"version": "3.5.1",
"description": "Synchronously get the current git commit hash, tag, or branch",
"repository": "https://github.com/NiceLabs/git-rev",
"license": "MIT",
"author": "septs",
"main": "./dist/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"build:watch": "rimraf dist && tsc --watch",
"lint": "eslint --fix src/**/*",
"prepublishOnly": "npm run build",
"test": "mocha"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/eslint": "^8.4.6",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.18",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"chai": "^4.3.6",
"eslint": "^8.23.1",
"mocha": "^10.0.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"engines": {
"node": ">= 11"
}
}