-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.7 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.7 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "functional-cli",
"version": "0.0.1",
"description": "Functional constructs in your CLI",
"license": "MIT",
"repository": "",
"author": "",
"keywords": [
""
],
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"lint": "tslint --force --format stylish \"src/**/*.ts\"",
"build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty",
"test": "mocha --compilers ts:ts-node/register --recursive 'test/**/*Spec.ts'",
"coverage": "nyc --include='src/**/*.ts' --reporter=text --reporter=html --reporter=lcov mocha --compilers ts:ts-node/register --recursive 'test/**/*Spec.ts'",
"watch": "npm run build -- --watch",
"incremental": "npm run lint && tsc --pretty && npm run test",
"watch:test": "nodemon -e '*' -w . -i dist -x 'npm run incremental || false'"
},
"dependencies": {
"debug": "^4.4.1",
"has-flag": "^2.0.0",
"lodash": "^4.17.21",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/mocha": "^2.2.48",
"@types/node": "^7.10.14",
"chai": "^3.5.0",
"mocha": "^11.7.1",
"nodemon": "^3.1.10",
"nyc": "^17.1.0",
"rimraf": "^2.7.1",
"stdio-mock": "^1.2.0",
"ts-node": "^3.3.0",
"tslint": "^5.20.1",
"typescript": "^2.9.2"
},
"engines": {
"node": ">=20.19.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"dist",
"node_modules",
"typings"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [],
"all": true
},
"bin": {
"f": "bin/index.js"
}
}