-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 1.98 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
{
"name": "generate-svelte-app",
"description": "Quick way to start your svelte app",
"version": "0.0.0-development",
"author": "Raul de Melo @raulfdm",
"bin": {
"generate-svelte-app": "./bin/run"
},
"bugs": "https://github.com/raulfdm/generate-svelte-app/issues",
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/template"
],
"homepage": "https://github.com/raulfdm/generate-svelte-app",
"keywords": [
"svelte",
"svelte app",
"app starter",
"spa starter",
"create-svelte-app"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "generate-svelte-app"
},
"repository": "raulfdm/generate-svelte-app",
"types": "lib/index.d.ts",
"scripts": {
"prepack": "rm -rf lib && tsc -b",
"test": "echo NO TESTS",
"release": "semantic-release",
"lint": "eslint --ext .ts src/"
},
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"colors": "^1.4.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.4",
"signale": "^1.4.0",
"tslib": "^1"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@semantic-release/commit-analyzer": "^6.3.0",
"@semantic-release/npm": "^5.2.0",
"@semantic-release/release-notes-generator": "^7.3.0",
"@types/colors": "^1.2.1",
"@types/fs-extra": "^8.0.1",
"@types/glob": "^7.1.1",
"@types/node": "^10",
"@types/signale": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"semantic-release": "^15.13.27",
"ts-node": "^8",
"typescript": "^3.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}