This repository has been archived by the owner on Oct 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.34 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": "@molecuel/http",
"version": "2.0.0-beta8",
"description": "HTTP module for molecuel Application framework",
"main": "lib/index.js",
"scripts": {
"tslint": "./node_modules/.bin/tslint --project tsconfig.npm.json",
"tslint_test": "./node_modules/.bin/tslint --project tsconfig.test.json",
"ts": "./node_modules/.bin/tsc -p tsconfig.npm.json",
"ts_test": "./node_modules/.bin/tsc -p tsconfig.test.json",
"build": "npm run tslint && npm run ts",
"build_test": "npm run tslint_test && npm run ts_test",
"build_all": "npm run build && npm run build_test",
"mocha": "./node_modules/.bin/mocha --exit",
"test": "npm run ts_test && npm run mocha",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha -- --exit && npm run remap && npm run remaphtml && npm run remaplcov",
"remap": "./node_modules/.bin/remap-istanbul -i coverage/coverage.json -o coverage/coverage-remap.json",
"remaphtml": "./node_modules/.bin/remap-istanbul -i coverage/coverage.json -o coverage/html -t html",
"remaplcov": "./node_modules/.bin/remap-istanbul -i coverage/coverage.json -o coverage/lcov-remap.info -t lcovonly",
"coveralls": "npm run cover && cat ./coverage/lcov-remap.info | coveralls",
"createdoc": "./node_modules/.bin/typedoc --gaID UA-89800241-1 --out ./docs --target es6 --mode file --ignoreCompilerErrors",
"publishdocs": "./node_modules/.bin/gh-pages -d docs",
"docs": "npm run createdoc && npm run publishdocs",
"2npm": "./node_modules/.bin/publish && npm run docs"
},
"keywords": [],
"devDependencies": {
"@types/koa": "^2.0.39",
"@types/koa-router": "^7.0.22",
"@types/mocha": "^5.2.0",
"@types/supertest": "^2.0.0",
"@types/when": "^2.4.28",
"assert": ">=0.0.1",
"coveralls": "^3.0.1",
"del": "^3.0.0",
"gh-pages": "^1.0.0",
"istanbul": "v1.0.0-alpha.2",
"mocha": ">=5.1.1",
"mocha-lcov-reporter": "^1.2.0",
"publish": "^0.6.0",
"remap-istanbul": "^0.11.1",
"should": "<13.1.0",
"supertest": "^3.0.0",
"tslint": "^5.0.0",
"typedoc": "^0.8.0",
"typescript": "^2.5.2"
},
"dependencies": {
"@molecuel/core": "^2.1.0-beta1",
"@molecuel/di": "^0.2.0",
"@reactivex/rxjs": "^5.4.3",
"inflation": "^2.0.0",
"koa": "2.3.0",
"koa-router": "^7.4.0",
"raw-body": "^2.2.0",
"reflect-metadata": "^0.1.3"
}
}