-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "@wmdmark/syncmycode",
"description": "A simple way to sync local javascript projects",
"version": "0.6.5",
"author": "Mark Johnson <[email protected]>",
"license": "MIT",
"main": "./lib/index.js",
"homepage": "https://github.com/wmdmark/syncmycode",
"repository": {
"type": "git",
"url": "https://github.com/wmdmark/syncmycode.git"
},
"bin": {
"syncmycode": "./lib/index.js"
},
"scripts": {
"start": "NODE_ENV=development nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"local": "sudo npm i -g",
"test": "jest"
},
"devDependencies": {
"@types/clear": "^0.1.1",
"@types/figlet": "^1.2.1",
"@types/node": "^14.14.14",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"dependencies": {
"chalk": "^4.1.0",
"clear": "^0.1.0",
"commander": "^6.2.1",
"cpx": "^1.5.0",
"dir-compare": "^2.4.0",
"figlet": "^1.5.0",
"inquirer": "^7.3.3",
"path": "^0.12.7",
"semver": "^7.3.4",
"sort-package-json": "^1.48.0"
}
}