-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.4 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
{
"name": "terminal-kit-plugins",
"version": "1.2.0",
"description": "Plugin features for terminal-kit",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "tslint --project \"./tsconfig.json\"",
"lint-fix": "tslint --fix --project \"./tsconfig.json\"",
"test": "jest --coverage",
"ci": "npm run lint && npm run build && npm run test",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run ci",
"preversion": "npm run ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dave-newson/terminal-kit-plugins.git"
},
"dependencies": {
"terminal-kit": "^1.0"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.6.1",
"@types/terminal-kit": "^1.28.0",
"expect.js": "^0.3.1",
"jest": "^24.8.0",
"nyc": "^14.1.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=4.5.0"
},
"keywords": [
"terminal-kit",
"terminal",
"console"
],
"author": {
"name": "Dave Newson",
"email": "dave@davenewson.com",
"url": "http://davenewson.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/dave-newson/terminal-kit-plugins/issues"
},
"homepage": "https://github.com/dave-newson/terminal-kit-plugins#readme"
}