-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.6 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
{
"name": "@janiscommerce/model",
"version": "8.16.0",
"description": "A package for managing Janis Models",
"main": "lib/model.js",
"scripts": {
"test": "export TEST_ENV=true; mocha --exit -R nyan --recursive tests/",
"watch-test": "export TEST_ENV=true; mocha --exit -R nyan -w --recursive tests/",
"coverage": "nyc npm test",
"coverage-ci": "export TEST_ENV=true; nyc --reporter=lcov --reporter=text-summary mocha --exit --recursive tests/",
"lint": "eslint lib/ tests/",
"build-types": "tsc lib/model.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/janis-commerce/model.git"
},
"author": "Janis",
"license": "ISC",
"homepage": "https://github.com/janis-commerce/model.git#readme",
"devDependencies": {
"@janiscommerce/superstruct": "^1.2.2",
"@types/node": "22.8.4",
"aws-sdk-client-mock": "^4.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"husky": "^8.0.3",
"mocha": "^10.4.0",
"mock-require": "^3.0.3",
"nyc": "^15.1.0",
"sinon": "^17.0.2",
"typescript": "^5.6.3"
},
"files": [
"lib/",
"types/"
],
"types": "types/index.d.ts",
"directories": {
"test": "tests"
},
"dependencies": {
"@aws-sdk/client-ssm": "^3.859.0",
"@janiscommerce/aws-secrets-manager": "^1.1.1",
"@janiscommerce/log": "^5.5.0",
"@janiscommerce/settings": "^1.0.1",
"lllog": "^1.1.2",
"md5": "^2.3.0"
},
"engines": {
"node": ">=18"
}
}