-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "@coralproject/events",
"version": "1.1.0",
"description": "Coral Events SDK for interacting with Events from Coral.",
"main": "lib/index.js",
"author": "The Coral Project",
"license": "Apache-2.0",
"repository": "coralproject/events",
"private": false,
"scripts": {
"prepack": "tsc",
"build": "tsc",
"lint": "npm-run-all --parallel lint:*",
"lint:eslint": "eslint .",
"lint:tsc": "tsc --noEmit",
"test": "jest"
},
"files": [
"/lib"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"rootDir": "src"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"dependencies": {}
}