-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 761 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 761 Bytes
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
{
"name": "@sprucejs/cli",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"bin": {
"spr": "./dist/bin.js"
},
"scripts": {
"build:watch": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/index.js",
"lint": "tslint --project tsconfig.json"
},
"author": "Daniel Cornock",
"license": "ISC",
"devDependencies": {
"@types/cli-spinner": "^0.2.0",
"@types/lodash": "^4.14.157",
"@types/node": "^14.0.14",
"tslint": "^6.1.2",
"typescript": "^3.9.6"
},
"dependencies": {
"chalk": "^4.1.0",
"cli-spinner": "^0.2.10",
"commander": "^5.1.0",
"lodash": "^4.17.15",
"simple-git": "^2.11.0"
},
"files": [
"dist/**/*"
]
}