-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "@chisel/ease",
"version": "1.3.1",
"description": "A minimal task runner with scheduling capabilities.",
"main": "bin/lib/ease.js",
"scripts": {
"start": "node ./node_modules/typescript/bin/tsc --build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ramtinsoltani/ease.git"
},
"author": "Ramtin Soltani <ramtin@chiselpowered.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ramtinsoltani/ease/issues"
},
"homepage": "https://github.com/ramtinsoltani/ease#readme",
"bin": {
"ease": "bin/ease.js"
},
"files": [
"bin"
],
"dependencies": {
"argumental": "^1.1.1",
"chalk": "^2.4.2",
"fs-extra": "^8.1.0",
"got": "^11.8.1",
"lodash": "^4.17.20",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1"
},
"devDependencies": {
"@types/fs-extra": "^7.0.0",
"@types/got": "^9.6.11",
"@types/lodash": "^4.14.168",
"@types/node": "^12.20.0",
"@types/source-map-support": "^0.5.3",
"typescript": "^3.9.9"
}
}