forked from npm/lockfile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 844 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": "lockfile",
"version": "1.0.4",
"main": "lockfile.js",
"directories": {
"test": "test"
},
"dependencies": {
"signal-exit": "^3.0.2"
},
"devDependencies": {
"tap": "^12.4.0",
"touch": "^3.1.0"
},
"scripts": {
"test": "tap test/*.js --cov -J",
"changelog": "bash gen-changelog.sh",
"postversion": "npm run changelog && git add CHANGELOG.md && git commit -m 'update changelog - '${npm_package_version}"
},
"repository": {
"type": "git",
"url": "https://github.com/npm/lockfile.git"
},
"keywords": [
"lockfile",
"lock",
"file",
"fs",
"O_EXCL"
],
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"license": "ISC",
"description": "A very polite lock file utility, which endeavors to not litter, and to wait patiently for others."
}