-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.2 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
{
"name": "@chronicled/platform-utils-js",
"version": "2.0.2",
"description": "Exports basic utility libraries for use in platform components",
"homepage": "https://github.com/chronicled/platform-utils-javascript#readme",
"bugs": {
"url": "https://github.com/chronicled/platform-utils-javascript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chronicled/platform-utils-javascript.git"
},
"license": "ISC",
"author": "",
"main": "dist/src/index.js",
"typings": "dist/src/index",
"scripts": {
"lint": "eslint --ext .js,ts . && prettier --check \"src/**/*.{js,ts}\"",
"test": "jest",
"build": "tsc",
"watch": "tsc -w",
"watch-test": "jest --watch",
"lint:fix": "prettier --write \"src/**/*.{js,ts}\"; eslint --ext .js,ts --fix .",
"prepack": "rm -r dist && npm run build"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts}": "eslint --ext .js,.ts --fix"
},
"dependencies": {
"@types/nconf": "^0.10.0",
"@types/node": "^14.14.37",
"amqplib": "^0.8.0",
"lodash": "^4.17.21",
"nconf": "^0.12.0",
"nconf-yaml": "^1.0.2",
"rascal": "^16.3.0",
"uuid": "^8.3.2",
"winston": "^3.7.2"
},
"devDependencies": {
"@chronicled/eslint-config": "^0.0.7",
"@types/amqplib": "^0.5.17",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.168",
"@types/rascal": "^10.0.3",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-jest": "^27.0.0",
"typescript": "^4.2.4"
},
"engines": {
"node": "~20.14"
}
}