-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 926 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "path-ensure",
"version": "2.0.1",
"description": "Ensure path exists",
"license": "MIT",
"repository": "iguntur/path-ensure",
"author": {
"name": "Guntur Poetra",
"email": "poetra.guntur@gmail.com",
"url": "https://github.com/iguntur"
},
"engines": {
"node": ">=6"
},
"scripts": {
"clean": "rm -rf dist",
"clean:dist": "rm -rf dist/*.test.*",
"build": "npm run clean && tsc",
"build:release": "npm run test && npm run build -- --declaration && npm run clean:dist",
"test": "npm run build && ava"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"path",
"fs",
"write",
"file",
"ensure",
"extra",
"exists",
"make-dir",
"mkdirp"
],
"dependencies": {
"make-dir": "^1.3.0"
},
"devDependencies": {
"@types/node": "^10.12.11",
"ava": "0.25.0",
"pify": "4.0.1",
"tempy": "^0.2.1",
"typescript": "^3.2.1"
}
}