-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·56 lines (56 loc) · 1.45 KB
/
package.json
File metadata and controls
executable file
·56 lines (56 loc) · 1.45 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
{
"name": "@simitgroup/jojo",
"version": "0.0.2-fix2",
"description": "JoJo Library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"OK\"",
"build": "tsc",
"watch": "tsc-watch",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "echo \"No support yet: npm run format && git add -A src\"",
"postversion": "echo \"No support yet: git push && git push --tags\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/SIMITGROUP/jojo.git"
},
"keywords": [
"simitgroup",
"jojo"
],
"author": "Sim IT Sdn Bhd",
"license": "BSD-3-Clause",
"peerDependencies": {
"axios": "^0.24.0",
"process": "^0.11.10"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.4.1",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.4"
},
"files": [
"dist"
],
"dependencies": {
"@types/lodash": "^4.14.178",
"@types/moment": "^2.13.0",
"@types/url-join": "^4.0.1",
"@types/validator": "^13.7.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"url-join": "^4.0.1",
"validator": "^13.7.0"
}
}