-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.64 KB
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
{
"name": "node-treeview",
"version": "1.5.0",
"description": "Asynchronous filesystem tree view for node",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"lint": "tslint -p ./tsconfig.json",
"clean": "shx rm -rf ./dist ./coverage",
"build": "tsc",
"postbuild": "shx cp ./package.json ./LICENSE ./README.md ./dist/src",
"test": "istanbul cover ./node_modules/jasmine/bin/jasmine.js",
"all": "npm run clean && npm run build && npm test",
"deploy": "npm publish ./dist/src"
},
"bin": {
"node-treeview": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/avine/node-treeview.git"
},
"keywords": [
"filesystem",
"asynchronous",
"tree",
"json",
"watch",
"glob",
"terminal",
"command-line",
"typescript",
"node",
"treeview"
],
"author": "Stéphane Francel <contact@avine.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/avine/node-treeview/issues"
},
"homepage": "https://github.com/avine/node-treeview#readme",
"devDependencies": {
"@types/chokidar": "^1.7.5",
"@types/fs-extra": "^5.0.3",
"@types/jasmine": "^2.8.8",
"@types/minimatch": "^3.0.3",
"@types/node": "^10.5.1",
"@types/yargs": "^11.0.0",
"fs-extra": "^6.0.1",
"istanbul": "^0.4.5",
"jasmine": "^3.1.0",
"jasmine-spec-reporter": "^4.2.1",
"shx": "^0.3.1",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^2.9.2"
},
"dependencies": {
"chalk": "^2.4.1",
"chokidar": "^2.0.4",
"minimatch": "^3.0.4",
"yargs": "^12.0.1"
}
}