-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
101 lines (101 loc) · 2.61 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ecoji-js",
"version": "1.1.2",
"description": "Encodes and/or decodes data as emojis. Implementation of the Ecoji Standard. Its base1024 with an emoji character set.",
"repository": {
"type": "git",
"url": "git+https://github.com/dimabory/ecoji-js.git"
},
"keywords": [
"emoji",
"ecoji",
"ecoji-js",
"base1024",
"algo"
],
"author": "Dmytro Borysovskyi",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dimabory/ecoji-js/issues"
},
"homepage": "https://github.com/dimabory/ecoji-js#readme",
"main": "dist/index.js",
"types": "dist/index.d.js",
"engines": {
"node": ">=8"
},
"files": [
"dist/",
"bin"
],
"bin": {
"ecoji": "bin/cli.js"
},
"scripts": {
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"docs": "typedoc lib --options typedoc.js",
"release:github": "git push --no-verify --follow-tags origin master",
"release:npm": "npm publish",
"release:preflight": "cd dist && npm pack",
"prerelease": "npm run build",
"release": "standard-version",
"postrelease": "npm run release:github && npm run release:npm",
"prepublish": "npm run build",
"prettier": "prettier --config .prettierrc.json --write ./lib/*/**.ts",
"build": "rm -rf ./dist && tsc",
"lint": "tslint --project tsconfig.json --format codeFrame",
"lint:fix": "npm run lint -- --fix",
"test": "mocha --require ts-node/register tests/**/*.ts",
"test:coverage": "npm t -- --coverage"
},
"devDependencies": {
"@commitlint/cli": "8.0.0",
"@commitlint/config-conventional": "8.0.0",
"@types/emojione": "^2.2.2",
"@types/mocha": "5.2.7",
"buffer": "5.1.0",
"commitizen": "3.1.1",
"conventional-changelog-cli": "2.0.22",
"cz-conventional-changelog": "^2.1.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"mocha": "6.1.4",
"prettier": "^1.13.7",
"standard-version": "4.4.0",
"ts-node": "8.3.0",
"tslint": "^5.18.0",
"typedoc": "0.14.2",
"typescript": "^3.4.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"linters": {
"lib/**/*.{ts,js}": [
"npm run prettier",
"npm run lint:fix",
"git add"
]
}
},
"dependencies": {
"get-stdin": "6.0.0",
"yargs": "12.0.1"
}
}