-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.27 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
{
"name": "@svrx/create-plugin",
"version": "0.1.0",
"description": "Initialize a svrx plugin by running one command.",
"bin": "./bin/index.js",
"files": [
"bin",
"lib",
"template"
],
"scripts": {
"lint": "eslint \"**/*.js\"",
"lint:fix": "eslint \"**/*.js\" --fix",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svrxjs/svrx-create-plugin.git"
},
"keywords": [
"svrx",
"svrx-plugin"
],
"engines": {
"node": ">=8.9.0"
},
"author": "Cody Chan <int64ago@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/svrxjs/svrx-create-plugin/issues"
},
"homepage": "https://github.com/svrxjs/svrx-create-plugin#readme",
"devDependencies": {
"@svrx/eslint-config": "^1.0.0",
"eslint": "^6.2.0",
"husky": "^3.0.4",
"lint-staged": "^9.2.3",
"standard-version": "^7.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
},
"dependencies": {
"@svrx/util": "^1.1.4",
"chalk": "^2.4.2",
"change-case": "^3.1.0",
"ejs": "^2.6.2",
"fs-extra": "^8.1.0",
"inquirer": "^7.0.0",
"ora": "^3.4.0",
"requireg": "^0.2.2",
"yargs": "^14.0.0"
}
}