-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.63 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.63 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
{
"name": "parse-cloud-classes",
"version": "0.0.0-development",
"description": "Easily extend parse cloud triggers behaviour",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"**/*.+(js|md|json)\"",
"lint": "eslint .",
"cz": "git-cz",
"dev": "nodemon example",
"release": "semantic-release"
},
"author": "Abdelrahman Ashraf <a.theashraf@gmail.com> (https://github.com/theashraf)",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "7.2.1",
"@commitlint/config-conventional": "7.1.2",
"commitizen": "3.0.5",
"cz-conventional-changelog": "2.1.0",
"eslint": "5.11.1",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-prettier": "3.0.1",
"express": "4.16.4",
"husky": "1.3.1",
"joi": "14.3.1",
"lint-staged": "8.1.0",
"nodemon": "1.18.9",
"parse-server": "3.1.2",
"prettier": "1.15.3",
"semantic-release": "^15.13.2"
},
"directories": {
"example": "example"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/theashraf/parse-cloud-classes.git"
},
"bugs": {
"url": "https://github.com/theashraf/parse-cloud-classes/issues"
},
"homepage": "https://github.com/theashraf/parse-cloud-classes#readme",
"keywords": [
"parse-server",
"parse",
"cloud",
"code",
"parse-cloud-hooks"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}