-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.46 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
{
"name": "di-hard",
"version": "2.0.0",
"description": "Dependency injection",
"main": "./dist",
"types": "./dist",
"author": "Thom Wright",
"contributors": [],
"keywords": [
"dependency",
"injection",
"di",
"container",
"ioc",
"module",
"modules",
"private",
"public"
],
"license": "MIT",
"homepage": "https://github.com/ThomWright/di-hard",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:ThomWright/di-hard.git"
},
"bugs": {
"url": "https://github.com/ThomWright/di-hard/issues"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"build-test": "rm -rf ./test && tsc --project tsconfig.test.json",
"fix-formatting": "./node_modules/.bin/prettier '**/*.ts' --write",
"lint": "tslint --format verbose --project tsconfig.json",
"test-unit": "npm run build-test && ava --verbose test/**/*.js",
"test": "npm run test-unit && npm run lint",
"preversion": "npm test",
"prepush": "npm test",
"prepublishOnly": "npm test && npm run build"
},
"dependencies": {
"leven": "^2.1.0"
},
"devDependencies": {
"@mft/eslint-config-momentumft": "^3.1.3",
"@types/leven": "^2.1.1",
"@types/node": "^8.0.34",
"ava": "^0.22.0",
"husky": "^0.14.3",
"prettier": "^1.7.4",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.5.3"
}
}