-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.19 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
{
"name": "mkdirp-bluebird",
"version": "1.3.2",
"description": "Promise (bluebird) version of mkdirp",
"author": {
"name": "Maksim Koryukov",
"email": "maxkoryukov@gmail.com"
},
"homepage": "https://github.com/maxkoryukov/mkdirp-bluebird",
"repository": {
"type": "git",
"url": "git+https://github.com/maxkoryukov/mkdirp-bluebird.git"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "lib",
"keywords": [
"mkdir",
"mkdirp",
"promise",
"bluebird"
],
"engines": {
"node": ">=4"
},
"bugs": {
"url": "https://github.com/maxkoryukov/mkdirp-bluebird/issues"
},
"scripts": {
"test": "`npm bin`/mocha",
"lint": "`npm bin`/eslint ./",
"coverage": "`npm bin`/istanbul cover `npm bin`/_mocha"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.8.0",
"eslint-config-volebo": "^2.3.3",
"istanbul": "0.4.x",
"lodash": "^4.17.4",
"mocha": "^4.0.1",
"rimraf": "^2.6.2"
},
"dependencies": {
"bluebird": "^3.5.1",
"mkdirp": ">=0.3.0"
},
"directories": {
"test": "test"
}
}