-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "@nazieb/str",
"description": "Small CLI app to converting strings from and to various formats",
"author": {
"name": "Ainun Nazieb",
"url": "https://github.com/nazieb"
},
"repository": "https://github.com/nazieb/str",
"license": "MIT",
"bin": "dist/index.js",
"version": "0.1.3",
"scripts": {
"build": "babel src -d dist && chmod +x dist/*.js",
"test": "jest",
"lint": "eslint .",
"release": "standard-version"
},
"dependencies": {
"change-case": "^3.1.0",
"clipboardy": "^2.3.0",
"commander": "^3.0.1",
"shortid": "^2.2.15",
"uuid": "^8.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^3.0.0",
"jest": "^26.0.1",
"prettier": "^1.16.4",
"standard-version": "^7.0.0"
}
}