forked from ycjcl868/snippets-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) 路 1.78 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) 路 1.78 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
71
{
"name": "snippets-cli",
"version": "1.0.10",
"description": "snippets-cli",
"main": "./lib/cli.js",
"bin": {
"snippets": "./bin/snippets.js"
},
"scripts": {
"precommit": "npm run lint-staged",
"lint-staged": "lint-staged",
"prepublish": "npm run build",
"lint": "eslint --ext .ts .",
"dev": "node bin/snippets.js",
"tpl": "node bin/snippets.js",
"build": "tsc",
"watch": "tsc -w",
"test": "echo \"Error: no test specified\""
},
"engines": {
"install-alinode": "3.11.2"
},
"lint-staged": {
"src/*.ts": "npm run lint"
},
"author": "ycjcl868",
"license": "ISC",
"devDependencies": {
"@types/debug": "^0.0.30",
"@types/inquirer": "^0.0.43",
"@types/js-yaml": "^3.11.2",
"@types/mkdirp": "^0.5.2",
"@types/node": "^10.7.0",
"@types/strip-json-comments": "^0.0.30",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-typescript": "^0.14.0",
"eslint-standard": "^1.0.2",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"ts-node": "^7.0.1",
"typescript": "^3.0.1"
},
"dependencies": {
"chalk": "^2.4.1",
"debug": "^3.1.0",
"inquirer": "^7.0.5",
"js-yaml": "^3.12.0",
"mkdirp": "^0.5.2",
"require-uncached": "^1.0.3",
"strip-json-comments": "^2.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ycjcl868/snippets-cli"
},
"keywords": [
"snippets",
"template",
"efficiency"
],
"bugs": {
"url": "https://github.com/ycjcl868/snippets-cli/issues"
}
}