-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.87 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.87 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
66
{
"name": "@ospin/process-core",
"author": "OSPIN web app team",
"version": "0.0.1",
"description": "core logic for the OSPIN processes",
"main": "index.js",
"license": "GPL-3.0-or-later",
"engines": {
"node": "12.x - 16.x",
"npm": ">=6"
},
"np": {
"yarn": false,
"contents": "src"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ospin-web-dev/process-core.git"
},
"scripts": {
"start": "node index.js",
"test-release": "npx semantic-release --dry-run",
"test": "jest",
"test-with-coverage": "jest --coverage",
"lint-diff": "LIST=$(git diff-index --name-only --diff-filter=d HEAD | grep .*\\.[jt]sx\\\\? | grep -v json); if [ \"$LIST\" ]; then eslint $LIST; fi",
"lint-diff-and-fix": "LIST=$(git diff-index --name-only --diff-filter=d HEAD | grep .*\\.[jt]sx\\\\? | grep -v json); if [ \"$LIST\" ]; then eslint --fix $LIST; fi",
"generate-schema-docs": "node scripts/generateSchemaDocs"
},
"files": [
"index.js",
"src/"
],
"dependencies": {
"deep-clone": "^3.0.3",
"joi": "^17.4.0",
"swagger-jsdoc": "^6.2.8",
"uuid": "^8.3.2"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jest-formatting": "^3.0.0",
"jest": "^27.0.1",
"semantic-release": "^17.4.3"
},
"jest": {
"coverageDirectory": "./coverage/",
"modulePaths": [
"<rootDir>/src",
"<rootDir>"
],
"collectCoverageFrom": [
"src/**/*.js"
],
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/test/mocks/assetMock.js"
}
}
}