-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 2.12 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
59
60
61
62
{
"name": "@sklechko/framework",
"version": "0.1.4",
"description": "Lightweight web framework inspired by Spring framework.",
"author": "Sashe Klechkovski <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/saskodh/framework.git"
},
"license": "MIT",
"keywords": [],
"scripts": {
"clean": "rm -rf dist",
"disable_zonejs_typings": "node ./scripts/disable_zonejs_typings.js",
"build": "npm run clean && tsc && npm run lint && npm run test && npm run prepare",
"test:clean": "rm -rf coverage",
"test:run": "istanbul cover node_modules/mocha/bin/_mocha --report none -- --recursive ./dist",
"test:coverage:lcov": "remap-istanbul -i ./coverage/coverage.json -o ./coverage/lcov.info -t lcovonly",
"test:coverage:html": "remap-istanbul -i ./coverage/coverage.json -o ./coverage/html-report -t html",
"test:coverage": "npm run test:coverage:lcov && npm run test:coverage:html",
"test": "tsc && npm run test:clean && npm run test:run && npm run test:coverage",
"lint": "tslint ./src/**/*.ts",
"prepare": "cp package.json README.md ./scripts -R ./dist/src",
"_prepublish": "npm run build",
"postinstall": "npm run disable_zonejs_typings"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"@types/lodash": "^4.14.37",
"@types/node": "^6.0.45",
"@types/object-hash": "^0.5.28",
"@types/winston": "0.0.28",
"@types/zone.js": "0.0.27",
"express": "^4.14.0",
"lodash": "^4.12.0",
"reflect-metadata": "^0.1.3",
"zone.js": "0.6.15",
"object-hash": "^1.1.3",
"winston": "^2.2.0"
},
"devDependencies": {
"@types/body-parser": "0.0.33",
"@types/chai": "^3.4.34",
"@types/express": "^4.0.33",
"@types/express-serve-static-core": "^4.0.37",
"@types/mime": "0.0.29",
"@types/mocha": "^2.2.32",
"@types/serve-static": "^1.7.31",
"@types/sinon": "^1.16.31",
"chai": "3.5.0",
"coveralls": "2.11.11",
"istanbul": "0.4.4",
"mocha": "2.5.3",
"remap-istanbul": "0.6.4",
"sinon": "1.17.4",
"ts-node": "0.9.1",
"tslint": "3.13.0",
"typescript": "2.0.3"
}
}