|
2 | 2 | "name": "typescript-mean-models",
|
3 | 3 | "version": "0.0.4",
|
4 | 4 | "description": "The models of the Typescript MEAN Stack Boilerplate",
|
5 |
| - "main": "index.js", |
| 5 | + "main": "dist/index.js", |
| 6 | + "typings": "src/index.d.ts", |
| 7 | + "files": [ |
| 8 | + "dist/", |
| 9 | + "LICENSE" |
| 10 | + ], |
6 | 11 | "scripts": {
|
7 |
| - "build": "tsc", |
8 |
| - "test": "echo \"Error: no test specified\" && exit 1" |
| 12 | + "lint": "tslint \"src/**/*.ts\"", |
| 13 | + "clean": "rimraf dist", |
| 14 | + "tsc": "tsc", |
| 15 | + "build": "yarn run clean && yarn run tsc", |
| 16 | + "test-spec": "mocha dist/**/*.spec.js -R spec --bail", |
| 17 | + "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- \"dist/**/*.spec.js\" -R spec --bail", |
| 18 | + "test": "yarn run build && yarn run lint && yarn run test-cov", |
| 19 | + "prepublish": "typings install && yarn run build" |
| 20 | + }, |
| 21 | + "engines": { |
| 22 | + "node": ">=4.2.0" |
| 23 | + }, |
| 24 | + "repository": { |
| 25 | + "type": "git", |
| 26 | + "url": "https://github.com/CodebitsDesign/typescript-mean-models.git" |
9 | 27 | },
|
10 | 28 | "author": "Seokjin Seo <[email protected]>",
|
11 | 29 | "license": "MIT",
|
| 30 | + "homepage": "https://github.com/CodebitsDesign/typescript-mean-models", |
| 31 | + "bugs": { |
| 32 | + "url": "https://github.com/CodebitsDesign/typescript-mean-models/issues" |
| 33 | + }, |
12 | 34 | "dependencies": {
|
13 | 35 | "bcrypt": "^1.0.2",
|
14 | 36 | "inversify": "^3.3.0",
|
15 |
| - "reflect-metadata": "^0.1.10" |
| 37 | + "reflect-metadata": "^0.1.10", |
| 38 | + "tsconfig": "^6.0.0" |
| 39 | + }, |
| 40 | + "devDependencies": { |
| 41 | + "@angular/cli": "^1.0.1", |
| 42 | + "chai": "^3.5.0", |
| 43 | + "chai-http": "^3.0.0", |
| 44 | + "istanbul": "^0.4.0", |
| 45 | + "mocha": "^3.3.0", |
| 46 | + "rimraf": "^2.5.4", |
| 47 | + "semver": "^5.1.0", |
| 48 | + "ts-node": "^3.0.2", |
| 49 | + "tslint": "^5.0.0", |
| 50 | + "tslint-config-standard": "^5.0.1", |
| 51 | + "typescript": "^2.3.0", |
| 52 | + "typings": "^2.0.0" |
16 | 53 | }
|
17 | 54 | }
|
0 commit comments