-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
93 lines (93 loc) · 2.39 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
{
"name": "generator-django-rest",
"version": "0.10.6",
"description": "A Yeoman generator for a Django REST API that makes you efficient, includes features you need in a typical modern web app, yet keeps things simple.",
"homepage": "https://github.com/metakermit/generator-django-rest",
"author": {
"name": "Dražen Lučanin",
"email": "[email protected]",
"url": "https://github.com/metakermit"
},
"files": [
"generators"
],
"main": "app/index.js",
"keywords": [
"yeoman-generator",
"django",
"django-rest",
"django-SPA",
"python",
"yeoman-generator"
],
"devDependencies": {
"auto-changelog": "^1.16.2",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-xo": "^0.27.2",
"eslint-config-xo-space": "^0.22.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^2.0.0"
},
"engines": {
"npm": ">= 4.0.0"
},
"license": "MIT",
"repository": "metakermit/generator-django-rest",
"scripts": {
"release:major": "npm version major && auto-changelog && git add CHANGELOG.md && git commit -m 'update CHANGELOG.md' && git push origin && git push origin --tags",
"release:minor": "npm version minor && auto-changelog && git add CHANGELOG.md && git commit -m 'update CHANGELOG.md' && git push origin && git push origin --tags",
"release:patch": "npm version patch && auto-changelog && git add CHANGELOG.md && git commit -m 'update CHANGELOG.md' && git push origin && git push origin --tags",
"prepublishOnly": "npm audit",
"pretest": "eslint .",
"precommit": "lint-staged",
"test": "jest"
},
"dependencies": {
"chalk": "^3.0.0",
"yeoman-generator": "^4.3.0",
"yosay": "^2.0.2"
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"mocha": true,
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": [
"prettier"
]
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
}
}