-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 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
{
"name": "foxcasts-core",
"version": "3.2.0",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"README.md"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest tests",
"test:coverage": "jest tests --coverage",
"test:ci": "jest tests --coverage --ci --runInBand --reporters=default --reporters=jest-junit",
"commit": "cz",
"postbuild": "cp package.json ./lib/pkg.json",
"postversion": "cp package.json ./lib/pkg.json"
},
"repository": {
"type": "git",
"url": "https://github.com/garredow/foxcasts-core.git"
},
"author": "Garrett Downs",
"license": "MIT",
"bugs": {
"url": "https://github.com/garredow/foxcasts-core/issues"
},
"homepage": "https://github.com/garredow/foxcasts-core#readme",
"dependencies": {
"date-fns": "^2.25.0",
"dexie": "^3.0.3",
"dexie-observable": "^3.0.0-beta.11"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"babel-jest": "^27.2.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"jest": "^27.2.0",
"jest-junit": "^12.2.0",
"semantic-release": "^17.4.7",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}