-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.04 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.04 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "twillio-textarea-counter",
"version": "1.2.0",
"description": "",
"main": "dist/twillio-textarea-counter.js",
"module": "dist/twillio-textarea-counter.mjs",
"scripts": {
"commit": "git-cz",
"clean": "rimraf dist",
"lint": "eslint src/** test/**",
"lint:fix": "eslint src/** test/** --fix",
"test": "jest",
"watch": "rollup -c --environment BUILD:development -w",
"build": "rollup -c --environment BUILD:production",
"prepublishOnly": "npm run clean && npm run lint && npm run test && npm run build",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"upgrade": "npm-check --update"
},
"keywords": [],
"author": "Matteo Badini <matteo.badini95@gmail.com>",
"license": "MIT",
"bugs": "https://github.com/matteobad/twillio-textarea-counter/issues",
"homepage": "https://github.com/matteobad/twillio-textarea-counter#readme",
"repository": "https://github.com/matteobad/twillio-textarea-counter.git",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/github": "^5.2.10",
"@semantic-release/npm": "^5.1.9",
"@semantic-release/release-notes-generator": "^7.1.4",
"babel-eslint": "^10.0.1",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-google": "^0.12.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"npm-check": "^5.9.0",
"rimraf": "^2.6.3",
"rollup": "^1.12.3",
"semantic-release": "^15.13.12"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}