-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "raid-fs",
"description": "A RAID implementation running on NodeJS",
"version": "1.0.0",
"main": ".lib/main.js",
"bin": {
"leroy": "./lib/main.js"
},
"repository": "https://github.com/freethinkingit/raid-fs",
"author": "Dan Sabin <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"local": "yarn run build && yarn start",
"start": "ts-node src/main.ts --",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"test": "echo 'no tests'",
"run:local": "npm i -g && leroy"
},
"dependencies": {
"@types/clear": "^0.1.0",
"@types/figlet": "^1.2.0",
"@types/fs-extra": "^8.1.0",
"@types/inquirer": "^6.5.0",
"@types/lodash": "^4.14.149",
"@types/node": "^13.11.1",
"chalk": "^4.0.0",
"clear": "^0.1.0",
"commander": "^5.0.0",
"figlet": "^1.3.0",
"fs-extra": "^9.0.0",
"hash-mod": "^0.0.5",
"inquirer": "^7.1.0",
"lodash": "^4.17.15",
"node-watch": "^0.6.3",
"nodemon": "^2.0.3",
"path": "^0.12.7",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
}
}