-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "@willishq/ts-container",
"version": "0.0.3",
"description": "A simple TypeScript container",
"scripts": {
"build": "tsc",
"lint": "eslint --fix src/**/*.ts",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"keywords": [
"typescript",
"container",
"service container"
],
"repository": {
"type": "git",
"url": "git+https://github.com/willishq/ts-container.git"
},
"author": "Andrew Willis (https://willishq.co.uk)",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.15",
"chai": "^4.2.0",
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-with-typescript": "^6.0.0",
"eslint-config-typescript": "^1.1.0",
"eslint-plugin-compat": "^2.6.3",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-typescript": "^0.14.0",
"mocha": "^5.2.0",
"shared-git-hooks": "^1.2.1",
"sinon-chai": "^3.3.0",
"ts-node": "^7.0.1",
"typescript": "^3.2.2",
"typescript-eslint-parser": "^21.0.2"
},
"bugs": {
"url": "https://github.com/willishq/ts-container/issues"
},
"homepage": "https://github.com/willishq/ts-container#readme",
"main": "dist/index.js",
"types": "dist/index.d.js"
}