-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.62 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
68
69
{
"name": "companero",
"version": "0.1.0",
"description": "Highly flexible component registry and lifecycle launcher",
"repository": {
"type": "git",
"url": "git://github.com/thomasklein/companero.js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/thomasklein/companero.js/issues"
},
"homepage": "https://github.com/thomasklein/companero.js",
"main": "lib/companero.js",
"typings": "lib/companero.d.ts",
"contributors": [
{
"name": "Thomas Klein",
"email": "[email protected]"
}
],
"files": [
"LICENSE",
"README.md",
"logo.png",
"lib/companero.js",
"lib/companero.d.ts"
],
"scripts": {
"lint": "eslint . --fix",
"sandbox": "webpack-dev-server --mode development --progress --color",
"test": "jest --coverage",
"precommit": "npm run lint && npm run test"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"eslint": "^5.16.0",
"eslint-plugin-jest": "^22.6.4",
"husky": "^2.4.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.2",
"typescript": "^3.5.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.3",
"webpack-dev-server": "^3.7.1"
},
"eslintConfig": {
"root": true
},
"jest": {
"bail": true,
"verbose": true,
"coverageReporters": [
"text"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.test.json"
}
},
"preset": "ts-jest/presets/js-with-ts"
},
"license": "MIT"
}