This repository was archived by the owner on Apr 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.3 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.3 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
{
"name": "@t2ee/core",
"version": "1.0.0",
"description": "@t2ee core library",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf dist && tsc -p src/tsconfig.json",
"build-test": "rm -rf test-dist/ && tsc -p src/tsconfig.test.json",
"test": "npm run build-test && ava test-dist/**/*.test.js",
"coverage": "npm run build-test && nyc ava -- test-dist/**/*.test.js"
},
"author": "t2ee",
"license": "Apache-2.0",
"devDependencies": {
"ava": "^0.21.0",
"nyc": "^11.1.0"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
},
"dependencies": {
"@types/js-yaml": "^3.5.29",
"@types/lodash": "^4.14.62",
"@types/node": "^7.0.8",
"js-yaml": "^3.8.3",
"koa": "^2.4.1",
"lodash": "^4.17.4",
"source-map-support": "^0.4.14"
},
"peerDependencies": {
"typescript": "2.x",
"reflect-metadata": "^0.1.10"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/t2ee/core.git"
},
"keywords": [
"t2ee",
"core",
"injection",
"dependency",
"di",
"spring"
],
"bugs": {
"url": "https://github.com/t2ee/core/issues"
},
"homepage": "https://github.com/t2ee/core#readme"
}