-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.03 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "kiss-cli",
"version": "0.5.7",
"projectName": "KISS",
"description": "Keep It Stupid Simple - An agnostic file snippets :kiss:",
"preferGlobal": true,
"main": "./cli.js",
"bin": {
"kiss": "./bin/kiss"
},
"license": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/sixertoy/kiss-cli/master/LICENSE"
}
],
"homepage": "https://github.com/sixertoy/kiss-cli",
"repository": "sixertoy/kiss-cli",
"bugs": {
"url": "https://github.com/sixertoy/kiss-cli/issues",
"email": "[email protected]"
},
"author": {
"name": "Matthieu Lassalvy",
"email": "[email protected]",
"url": "https://github.com/sixertoy"
},
"engines": {
"npm": ">=5.6.0",
"node": ">=8.10.0",
"yarn": ">=1.17.0"
},
"files": [
"bin/",
"src/",
".kiss/",
"cli.js"
],
"keywords": [
"cli",
"tool",
"file",
"files",
"generator",
"js",
"node",
"nodejs",
"project",
"projects",
"module",
"modules",
"template",
"templates",
"snippet",
"snippets",
"html",
"task",
"tasks",
"react",
"reactjs",
"amd",
"commonjs",
"angular",
"angular2",
"angularjs",
"gulp",
"gulpfile",
"require",
"requirejs",
"grunt",
"gruntfile",
"javascript",
"mocha",
"jest",
"spec",
"test",
"tests",
"atom",
"github",
"sublime",
"sublime text"
],
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"husky": "^8.0.1",
"jest": "^28.1.2",
"prettier": "^2.1.2"
},
"scripts": {
"lint": "eslint --fix -c ./.eslintrc.json ./cli.js './src/**/*.js'",
"test": "jest",
"kiss": "node ./cli.js",
"prepare": "yarn lint && yarn test",
"cleanup": "rm -rf ./node_modules && rm ./yarn.lock"
},
"dependencies": {
"fs-extra": "^10.0.0"
}
}