-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·62 lines (62 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·62 lines (62 loc) · 1.59 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
{
"name": "kontik",
"version": "3.2.1",
"description": "Simple node service container for managing of singletons",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && npm run bundle",
"bundle": "dts-bundle-generator --config dtsconfig.js",
"prepublish": "npm run build",
"test": "nyc mocha --opts ./mocha.opts",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "tslint -c tslint.json --project tsconfig.json",
"lint-fix": "tslint --fix -c tslint.json --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bouchal/node-kontik.git"
},
"author": "Antonín Bouchal <me@justme.cz>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bouchal/node-kontik/issues"
},
"homepage": "https://github.com/bouchal/node-kontik#readme",
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/sinon": "^7.0.13",
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"dts-bundle-generator": "^2.1.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"sinon": "^7.4.1",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.2.4"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*"
],
"exclude": [
"**/*.d.ts",
"**/*.test.ts",
"test/**/*.ts"
],
"reporter": [
"html"
],
"all": true
}
}