-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.11 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
{
"name": "@skills17/karma-helpers",
"version": "2.0.0",
"description": "Provides some karma helpers for usage in a skills competition environment.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "npm run build:js && npm run build:types",
"build:js": "babel src --out-dir lib --delete-dir-on-start --extensions \".ts\"",
"build:js:watch": "npm run build:js -- --watch --verbose",
"build:types": "tsc --emitDeclarationOnly --project tsconfig.types.json",
"lint": "tsc --noEmit && eslint . --ext .ts --ext .js --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:watch": "npm test -- --watch",
"prepublishOnly": "npm run test && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skills17/karma-helpers.git"
},
"author": "Cyril Wanner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/skills17/karma-helpers/issues"
},
"homepage": "https://github.com/skills17/karma-helpers#readme",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^27.0.1",
"@types/rimraf": "^3.0.0",
"@types/uniqid": "^5.2.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-jest": "^27.1.0",
"chai": "^4.2.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.1.0",
"karma": "^6.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"mocha": "^9.1.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"strip-ansi": "^6.0.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@skills17/task-config": "^3.0.1",
"@skills17/test-result-printer": "^2.1.2",
"chalk": "^4.1.0",
"uniqid": "^5.3.0"
},
"peerDependencies": {
"karma": "^5.0.0 || ^6.0.0"
}
}