|
1 | 1 | { |
2 | 2 | "name": "fireorm", |
3 | | - "version": "0.4.0", |
4 | 3 | "description": "ORM for Firestore", |
| 4 | + "version": "0.0.0-development", |
| 5 | + "author": "Willy Ovalle <[email protected]>", |
| 6 | + "homepage": "https://wovalle.github.io/fireorm/", |
| 7 | + "license": "ISC", |
5 | 8 | "main": "lib/src/index.js", |
6 | 9 | "types": "lib/src/index.d.ts", |
| 10 | + "bugs": { |
| 11 | + "url": "https://github.com/wovalle/fireorm/issues" |
| 12 | + }, |
| 13 | + "repository": { |
| 14 | + "type": "git", |
| 15 | + "url": "git+https://github.com/wovalle/fireorm.git" |
| 16 | + }, |
| 17 | + "keywords": [ |
| 18 | + "firebase", |
| 19 | + "firestore", |
| 20 | + "orm" |
| 21 | + ], |
| 22 | + "scripts": { |
| 23 | + "build": "tsc", |
| 24 | + "build:documentation": "typedoc --out docs --name fireorm --readme README.md --mode file --gaID UA-133856278-1 --excludeNotExported --exclude examples --exclude test", |
| 25 | + "build:watch": "tsc -w", |
| 26 | + "lint": "tslint --project tsconfig.json", |
| 27 | + "lint:md": "remark README.md -o README.md", |
| 28 | + "release": "semantic-release", |
| 29 | + "test": "mocha --require ts-node/register src/*.spec.ts --recursively", |
| 30 | + "test:watch": "mocha --require ts-node/register src/*.spec.ts --watch-extensions ts --recursively -w" |
| 31 | + }, |
7 | 32 | "dependencies": { |
8 | 33 | "class-transformer": "^0.2.0", |
9 | 34 | "pluralize": "^7.0.0" |
10 | 35 | }, |
11 | 36 | "devDependencies": { |
| 37 | + "@commitlint/cli": "^7.6.1", |
| 38 | + "@commitlint/config-conventional": "^7.6.0", |
| 39 | + "@commitlint/travis-cli": "^7.6.1", |
12 | 40 | "@google-cloud/firestore": "^0.19.0", |
| 41 | + "@qiwi/semantic-release-gh-pages-plugin": "^1.9.1", |
13 | 42 | "@types/chai": "^4.1.7", |
14 | 43 | "@types/mocha": "^5.2.5", |
15 | 44 | "@types/pluralize": "^0.0.29", |
16 | 45 | "@types/sinon": "^7.0.6", |
17 | 46 | "chai": "^4.2.0", |
18 | 47 | "firebase-admin": "^6.5.0", |
19 | | - "gh-pages-deploy": "^0.5.1", |
| 48 | + "husky": "^2.3.0", |
20 | 49 | "mocha": "^5.2.0", |
21 | 50 | "mock-cloud-firestore": "^0.9.0", |
22 | 51 | "reflect-metadata": "^0.1.13", |
|
28 | 57 | "typedoc": "^0.14.2", |
29 | 58 | "typescript": "^3.2.2" |
30 | 59 | }, |
31 | | - "scripts": { |
32 | | - "lint": "tslint --project tsconfig.json", |
33 | | - "lint:md": "remark README.md -o README.md", |
34 | | - "build": "tsc", |
35 | | - "build:watch": "tsc -w", |
36 | | - "test": "mocha --require ts-node/register src/*.spec.ts --recursively", |
37 | | - "test:watch": "mocha --require ts-node/register src/*.spec.ts --watch-extensions ts --recursively -w", |
38 | | - "build:documentation": "typedoc --out docs --name fireorm --readme README.md --mode file --gaID UA-133856278-1 --excludeNotExported --exclude examples --exclude test", |
39 | | - "deploy:documentation": "gh-pages-deploy" |
40 | | - }, |
41 | | - "repository": { |
42 | | - "type": "git", |
43 | | - "url": "git+https://github.com/wovalle/fireorm.git" |
| 60 | + "peerDependencies": { |
| 61 | + "reflect-metadata": "^0.1.13" |
44 | 62 | }, |
45 | | - "keywords": [ |
46 | | - "orm", |
47 | | - "firestore", |
48 | | - "firebase" |
| 63 | + "files": [ |
| 64 | + "/lib", |
| 65 | + "!**/*.map", |
| 66 | + "!**/*.spec.*", |
| 67 | + "!**/examples/**", |
| 68 | + "!**/test/**" |
49 | 69 | ], |
50 | | - "author": "Willy Ovalle <[email protected]>", |
51 | | - "license": "ISC", |
52 | | - "bugs": { |
53 | | - "url": "https://github.com/wovalle/fireorm/issues" |
| 70 | + "commitlint": { |
| 71 | + "extends": [ |
| 72 | + "@commitlint/config-conventional" |
| 73 | + ] |
54 | 74 | }, |
55 | | - "homepage": "https://wovalle.github.io/fireorm/", |
56 | | - "gh-pages-deploy": { |
57 | | - "staticpath": "docs", |
58 | | - "prep": [ |
59 | | - "build:documentation" |
60 | | - ], |
61 | | - "commit": "Releasing version", |
62 | | - "noprompt": true |
| 75 | + "husky": { |
| 76 | + "hooks": { |
| 77 | + "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" |
| 78 | + } |
63 | 79 | }, |
64 | | - "peerDependencies": { |
65 | | - "reflect-metadata": "^0.1.13" |
| 80 | + "release": { |
| 81 | + "branch": "master", |
| 82 | + "plugins": [ |
| 83 | + "@semantic-release/npm", |
| 84 | + "@semantic-release/github", |
| 85 | + "@semantic-release/commit-analyzer", |
| 86 | + "@semantic-release/release-notes-generator", |
| 87 | + "@qiwi/semantic-release-gh-pages-plugin" |
| 88 | + ] |
66 | 89 | } |
67 | 90 | } |
0 commit comments