-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.27 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.27 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@hpi-schul-cloud/commons",
"version": "1.3.4",
"description": "Helpers and common tools for the hpi school-cloud.",
"repository": {
"github": "https: //github.com/hpi-schul-cloud/commons"
},
"license": "AGPL-3.0",
"main": "lib/index.js",
"types": "lib/index.d.js",
"homepage": "https://github.com/hpi-schul-cloud/commons",
"scripts": {
"coverage": "cross-env NODE_ENV=test nyc mocha -r ts-node/register -r tsconfig-paths/register test/**/*.spec.ts",
"mocha": "NODE_ENV=test mocha -r ts-node/register -r tsconfig-paths/register test/**/*.spec.ts",
"test": "npm run build && npm run coverage",
"lint": "eslint . --fix --ext .ts,.js,.json,.md --ignore-path .gitignore",
"lint:ci": "eslint . --ext .ts,.js,.json,.md --ignore-path .gitignore",
"build": "shx rm -rf lib && tsc"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"engineStrict": true,
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.4",
"@types/config": "0.0.39",
"@types/dot-object": "^2.1.0",
"@types/lodash": "^4.14.164",
"@types/mocha": "^9.0.0",
"@types/node": "^16.0.0",
"@types/sinon": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.32.0",
"acorn": "^8.0.4",
"chai": "^4.2.0",
"coveralls": "^3.0.7",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-json": "^2.1.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.1.0",
"mocha": "^11.1.0",
"nyc": "^15.0.0",
"prettier": "^2.0.5",
"shx": "^0.3.3",
"sinon": "^11.0.0",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.7.2"
},
"dependencies": {
"ajv": "^6.12.5",
"config": "^3.3.1",
"dot-object": "^2.1.4",
"dotenv": "^10.0.0",
"lodash": "^4.17.20"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"include": [
"src/**"
],
"reporter": [
"text",
"lcov"
]
}
}