-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.83 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
76
77
{
"name": "@acid-tango/arcus-js",
"version": "0.1.3",
"description": "",
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:acidtango/arcus-js.git"
},
"bugs": {
"url": "https://github.com/acidtango/arcus-js/issues"
},
"homepage": "https://github.com/acidtango/arcus-js#readme",
"files": [
"lib/**/*"
],
"main": "lib/src/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"test": "jest",
"lint": "eslint '{src,apps,libs,test}/**/*.ts'",
"lint:fix": "eslint '{src,apps,libs,test}/**/*.ts' --fix",
"build": "tsc",
"release": "standard-version",
"prepare": "husky install"
},
"engines": {
"node": ">=12",
"yarn": ">=1.22.5"
},
"dependencies": {
"node-fetch": "2.6.5",
"regenerator-runtime": "0.13.9"
},
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@types/jest": "27.0.2",
"@types/node": "14.17.21",
"@types/node-fetch": "2.5.12",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.2",
"jest": "27.2.5",
"prettier": "2.4.1",
"standard-version": "9.3.1",
"ts-jest": "27.0.5",
"typescript": "4.4.3"
},
"peerDependencies": {
"@types/node-fetch": "2.5.12"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"setupFilesAfterEnv": [
"<rootDir>/test/setup.ts"
],
"testRegex": "\\..*spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage",
"testEnvironment": "node",
"testTimeout": 30000
}
}