-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
{
"name": "@ulkajs/format",
"version": "0.0.4",
"bin": {
"ulka-format": "bin/ulka-format.js"
},
"main": "dist/index.js",
"repository": "https://github.com/ulkajs/ulka-format.git",
"author": "Roshan Acharya <[email protected]>",
"license": "MIT",
"files": [
"dist",
"bin"
],
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"lint": "eslint {src,tests}/**.ts",
"test": "jest",
"clean": "rimraf dist",
"cb": "yarn clean && yarn build",
"prepublishOnly": "yarn lint && yarn test && yarn cb"
},
"dependencies": {
"fast-glob": "^3.3.0",
"prettier": "^2.8.8"
},
"gitHooks": {
"pre-commit": "lint-staged && yarn cb && yarn test && git add ."
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"bugs": {
"url": "https://github.com/coderosh/string-time/issues"
},
"homepage": "https://github.com/coderosh/string-time#readme",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.12",
"@types/prettier": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^27.4.4",
"lint-staged": "^12.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.3",
"yorkie": "^2.0.0"
}
}