This repository has been archived by the owner on Nov 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.43 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
47
48
49
50
51
52
53
54
{
"name": "femto-cli",
"version": "0.1.0-alpha",
"description": "a tiny tool for making command-line interfaces with TypeScript",
"types": "dist/types.d.ts",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"demo": "ts-node -r esm test/manual/cli.ts",
"build": "tsc",
"lint": "eslint src/**/*.ts test/**/*.ts",
"test": "nyc mocha",
"coverage": "nyc report",
"coveralls": "cat coverage/lcov.info | coveralls",
"release": "standard-version -a"
},
"standard-version": {
"scripts": {
"prerelease": "yarn lint && yarn test && yarn build"
}
},
"dependencies": {
"kleur": "^3.0.3",
"mri": "^1.1.4",
"ts-toolbelt": "^4.8.29"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.6.8",
"@types/sinon": "^7.0.13",
"@typescript-eslint/parser": "^2.0.0",
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"eslint": "^6.1.0",
"esm": "^3.2.25",
"husky": "^3.0.1",
"if-node-version": "^1.1.1",
"mocha": "^6.2.0",
"nyc": "12.x.x",
"sinon": "^7.3.2",
"standard-version": "^7.0.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"repository": "https://github.com/tannerntannern/femto-cli.git",
"author": "Tanner Nielsen <tannerntannern@gmail.com>",
"license": "MIT"
}