-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 904 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
{
"name": "wfs-local",
"version": "1.0.0",
"description": "Minimal subset of file operations for remote services",
"main": "lib/entry.js",
"types": "lib/entry.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "mocha -r ts-node/register sources/*.test.ts",
"lint": "tslint --project tsconfig.json sources/**/*.ts",
"dist": "tsc"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:xbsoftware/node-wfs-local.git"
},
"keywords": [
"filesystem",
"http"
],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^13.9.1",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.7.0",
"typescript": "^3.1.3"
},
"author": "Maksim Kozhukh",
"license": "MIT",
"dependencies": {
"@types/fs-extra": "^5.0.4",
"fs-extra": "^7.0.1"
}
}