-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.24 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
44
45
46
47
{
"name": "node-cmder",
"version": "3.0.6",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/xujif/node-cmder",
"repository": {
"type": "git",
"url": "https://github.com/xujif/node-cmder.git"
},
"description": "Command line tools for Node.js & Typescript",
"keywords": [
"command",
"command line",
"console",
"Typescript"
],
"license": "MIT",
"author": "i@xujif.com",
"scripts": {
"compile": "tsc",
"tslint": "tslint --project .",
"prepack": "rimraf dist && npm run tslint && npm run compile",
"test": "mocha --require espower-typescript/guess test/**/*.ts"
},
"dependencies": {
"colors": "^1.3.1",
"debug": "^4.0.0"
},
"devDependencies": {
"@types/colors": "^1.2.1",
"@types/debug": "0.0.30",
"@types/glob": "^7.1.1",
"@types/mocha": "^2.2.48",
"@types/node": "^8.6.0",
"espower-typescript": "^9.0.1",
"mocha": "^10.2.0",
"power-assert": "^1.6.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.9",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.8.0",
"tslint-config-standard": "^8.0.0",
"typescript": "*"
}
}