-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1006 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
40
{
"name": "simple-steps",
"version": "0.1.2",
"author": "ZSkycat",
"description": "Help you output the step log in the terminal, and count the time spent.",
"license": "MIT",
"keywords": [
"terminal",
"console",
"logger"
],
"repository": {
"type": "git",
"url": "https://github.com/ZSkycat/simple-steps"
},
"main": "./dist/index.js",
"files": [
"dist/",
"src/"
],
"scripts": {
"build": "npm run clear && tsc -p .",
"clear": "rimraf ./dist/**/*",
"test": "mocha --require ts-node/register ./test/**/*"
},
"dependencies": {
"ansi-regex": "^3.0.0",
"chalk": "^2.4.1",
"cjk-regex": "^2.0.0"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.7.1",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tsc": "^1.20150623.0",
"typescript": "^3.0.1"
}
}