-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.18 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "chdir-promise",
"version": "0.0.0-development",
"description": "Change working dir and return a promise, a stack of folders is maintained to jump back",
"main": "index.js",
"scripts": {
"test": "echo running unit tests",
"posttest": "npm run unit",
"unit": "mocha test/*-spec.js",
"demo": "DEBUG=chdir-promise node test/demo.js",
"deps": "deps-ok && dependency-check --no-dev .",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"commit": "commit-wizard",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"pretty": "prettier-standard *.js src/*.js test/*.js",
"prelint": "npm run pretty",
"lint": "standard --verbose --fix *.js src/*.js test/*.js",
"pretest": "npm run lint",
"issues": "git-issues",
"unused-deps": "dependency-check --unused --no-dev ."
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/chdir-promise.git"
},
"files": [
"index.js"
],
"keywords": [
"chdir",
"change",
"directory",
"folder",
"promise",
"stack",
"folders",
"working",
"cwd"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/chdir-promise/issues"
},
"homepage": "https://github.com/bahmutov/chdir-promise",
"dependencies": {
"bluebird": "^3.5.1",
"check-more-types": "2.24.0",
"debug": "3.1.0",
"lazy-ass": "1.6.0"
},
"devDependencies": {
"dependency-check": "2.9.1",
"deps-ok": "1.2.1",
"git-issues": "^1.3.1",
"github-post-release": "1.13.1",
"mocha": "^4.0.1",
"pre-git": "3.15.3",
"prettier-standard": "7.0.3",
"semantic-release": "8.2.3",
"standard": "10.0.3"
},
"config": {
"pre-git": {
"commit-msg": "simple",
"pre-commit": [
"npm test"
],
"pre-push": [
"npm run deps",
"npm run unused-deps",
"npm run size"
],
"post-commit": [],
"post-checkout": [],
"post-merge": []
}
},
"release": {
"generateNotes": "github-post-release",
"analyzeCommits": "simple-commit-message"
}
}