-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.4 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
{
"name": "enola",
"version": "0.4.5",
"description": "API and CLI for obliterating files and directories",
"main": "build/index.js",
"typings": "build/index.d.ts",
"author": "George Thomas",
"license": "MIT",
"keywords": [
"delete",
"del",
"fs",
"nuke",
"rd",
"rf",
"rmdir",
"rm"
],
"bin": {
"enola": "build/bin/enola.js",
"nuke": "build/bin/nuke.js"
},
"scripts": {
"build": "gulp \"build\"",
"clean": "gulp \"clean\"",
"lint:javascript": "gulp \"lint:javascript\"",
"lint:typescript": "gulp \"lint:typescript\"",
"lint": "gulp \"lint\"",
"prepack": "npm-run-all -s \"clean\" \"build\"",
"test:performance": "node \"test/performance/index.js\"",
"test": "mocha \"test/**/*.spec.js\""
},
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/node": "^10.10.1",
"@types/tmp": "0.0.33",
"@types/yargs": "^12.0.1",
"chai": "^4.2.0",
"del": "^3.0.0",
"eslint": "^5.6.0",
"gulp": "^3.9.1",
"gulp-eslint": "^5.0.0",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^5.0.0-alpha.3",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"tmp": "0.0.33",
"tslint": "^5.11.0",
"typescript": "^3.0.3",
"utf-8-validate": "^5.0.1"
},
"dependencies": {
"chalk": "^2.4.1",
"fs-extra": "^7.0.0",
"log4js": "^3.0.6",
"yargs": "^12.0.2"
}
}