-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.7 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "functional-cli",
"version": "0.0.0",
"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": {
"has-flag": "^2.0.0",
"lodash": "^4.17.4",
"yargs": "^8.0.2"
},
"devDependencies": {
"@types/chai": "^3.0.0",
"@types/mocha": "^2.0.0",
"@types/node": "^7.0.31",
"chai": "^3.0.0",
"coveralls": "^2.0.0",
"mocha": "^3.0.0",
"nodemon": "^1.11.0",
"nyc": "^10.0.0",
"rimraf": "^2.0.0",
"stdio-mock": "^1.1.0",
"ts-node": "^3.1.0",
"tslint": "^5.0.0",
"typescript": "^2.4.1"
},
"engines": {
"node": ">=6.0.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"dist",
"node_modules",
"typings"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [],
"all": true
},
"bin": {
"f": "./bin/index.js"
}
}