-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.09 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
{
"name": "codemash",
"version": "1.2.36",
"description": "CodeMash tools for Node and javascript developers. Access codemash.io tools from npm",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "rollup -c",
"test": "jest --collectCoverage --",
"format:check": "prettier --check \"**/*.{js,jsx,yml,yaml,json.css}\"",
"format": "prettier --write \"**/*.{js,jsx,yml,yaml,json.css}\"",
"commit": "cz"
},
"files": [
"dist/*",
"src/*",
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/codemash-io/CodeMash.Js.git"
},
"keywords": [
"baas",
"backend",
"backend-as-a-service",
"codemash",
"database",
"files",
"push",
"emails",
"code",
"serverless",
"logs",
"payments"
],
"author": "Domantas Jovaisas",
"license": "MIT",
"bugs": {
"url": "https://github.com/codemash-io/CodeMash.Js/issues"
},
"homepage": "https://codemash.io",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"babel-jest": "^26.6.3",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.3.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.6.3",
"prettier": "2.2.1",
"rollup": "^2.33.1",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^19.0.3",
"husky": "^5.1.1"
},
"dependencies": {
"node-fetch": "^2.6.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}