-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 904 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
{
"name": "@sabbatical/git-get-commit-id",
"version": "1.1.2",
"description": "get the git commit-id for the current directory.",
"main": "git-get-commit-id",
"scripts": {
"build": "bin/build-and-install-in-node_modules.sh",
"clean": "rm -f git-get-commit-id.js git-get-commit-id.tests.js node_modules/@sabbatical/git-get-commit-id/*",
"test-only": "DISABLE_LOGGING=true mocha -R spec git-get-commit-id.tests.js",
"test": "npm run clean && npm run build && npm run test-only"
},
"repository": {
"type": "git",
"url": "[email protected]:psnider/git-get-commit-id.git"
},
"author": "Peter Snider",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/chai": "3.4.34",
"@types/mocha": "2.2.33",
"@types/node": "6.0.51",
"chai": "3.5.0",
"mocha": "3.2.0",
"typescript": "2.2.1"
},
"typings": "./git-get-commit-id.d.ts"
}