-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.34 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
{
"name": "cilly",
"version": "1.0.25",
"description": "The last library you'll ever need for building intuitive, robust and flexible CLI tools with Node.js and TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "nyc --reporter=json-summary --reporter=text mocha -r ts-node/register 'src/**/*.test.ts'",
"build": "tsc",
"prepublish": "npm run build"
},
"nyc": {
"include": "src",
"exclude": [
"src/presentation.ts",
"*/**/*.test.ts"
]
},
"repository": {
"type": "git",
"url": "https://github.com/cilly-cli/cilly"
},
"keywords": [
"cli",
"node",
"nodejs",
"javascript",
"typescript",
"command",
"line",
"interface",
"tool"
],
"author": "Anders Brams",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.13",
"@types/sinon": "^9.0.10",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.15.0",
"eslint-plugin-unused-imports": "^1.0.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"sinon": "^9.2.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {}
}