-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.51 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.51 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
{
"name": "somod-sdk",
"version": "2.1.1",
"description": "SOMOD (Serverless Optimized MODule). Serverless Framework to create reusable micro applications",
"scripts": {
"postinstall": "npx mono-repo install -v && npx mono-repo run build -v",
"eslint": "npx eslint ./ --no-error-on-unmatched-pattern",
"prettier": "npx prettier --check --ignore-unknown --no-error-on-unmatched-pattern ./**/*",
"check-sanity": "npm run prettier && npm run eslint && npx mono-repo validate --version-match",
"pretest": "npm run check-sanity",
"test": "npx mono-repo run test -v",
"version": "npx mono-repo version -v %npm_config_packages%",
"postversion": "git push --follow-tags"
},
"eslintConfig": {
"extends": [
"sodaru"
]
},
"prettier": "prettier-config-sodaru",
"repository": {
"type": "git",
"url": "https://github.com/somod-dev/somod.git"
},
"keywords": [
"sodaru",
"somod",
"nextjs-package",
"serverless-package",
"sodaru-module-package"
],
"author": "Raghavendra K R <raghavendra@sodaru.com>",
"contributors": [
"Raghavendra K R <raghavendra@sodaru.com>",
"Lokesh G C <lokesh@sodaru.com>",
"Sukhesh M G <sukhesh@sodaru.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/somod-dev/somod/issues"
},
"homepage": "https://github.com/somod-dev/somod#readme",
"private": true,
"devDependencies": {
"eslint-config-sodaru": "^1.0.0",
"npm-mono-repo": "^1.2.0",
"prettier-config-sodaru": "^1.0.0"
}
}