-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.47 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.47 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
{
"name": "typescript-mean-models",
"version": "0.0.8",
"description": "The models of the Typescript MEAN Stack Boilerplate",
"main": "dist/index.js",
"typings": "dist/index",
"files": [
"dist/"
],
"scripts": {
"lint": "tslint \"src/**/*.ts\"",
"clean": "rimraf dist",
"tsc": "tsc",
"build": "yarn run clean && yarn run tsc",
"test-spec": "mocha dist/**/*.spec.js -R spec --bail",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- \"dist/**/*.spec.js\" -R spec --bail",
"test": "yarn run build && yarn run lint && yarn run test-cov",
"prepublish": "typings install && yarn run build"
},
"engines": {
"node": ">=4.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/CodebitsDesign/typescript-mean-models.git"
},
"author": "Seokjin Seo <codebits.design@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/CodebitsDesign/typescript-mean-models",
"bugs": {
"url": "https://github.com/CodebitsDesign/typescript-mean-models/issues"
},
"dependencies": {
"bcrypt": "^1.0.2",
"inversify": "^3.3.0",
"reflect-metadata": "^0.1.10"
},
"devDependencies": {
"@types/node": "^7.0.14",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"istanbul": "^0.4.0",
"mocha": "^3.3.0",
"rimraf": "^2.5.4",
"semver": "^5.1.0",
"ts-node": "^3.0.2",
"tslint": "^5.0.0",
"tslint-config-standard": "^5.0.1",
"typescript": "^2.3.0",
"typings": "^2.0.0"
}
}