-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "fs-mktemp",
"version": "1.1.3",
"description": "`mktemp` command for Node.js",
"main": "lib/",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"release:patch": "npm version patch",
"release:minor": "npm version minor",
"release:major": "npm version major",
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard \"lib/**/*.js\" --fix",
"mocha": "mocha ./test/**/*.test.js",
"test": "npm run lint && nyc npm run mocha"
},
"keywords": [
"fs",
"mktemp",
"temp"
],
"repository": "honzahommer/node-fs-mktemp",
"author": "Honza Hommer <[email protected]>",
"homepage": "https://github.com/honzahommer/node-fs-mktemp#README",
"license": "MIT",
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"semistandard": {
"env": [
"mocha"
]
},
"dependencies": {
"universalify": "^0.1.2"
},
"devDependencies": {
"chai": "^4.2.0",
"husky": "^3.0.0",
"mocha": "^6.0.2",
"nyc": "^14.0.0",
"semistandard": "^14.0.1"
}
}