-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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
{
"name": "date-pickle",
"version": "0.0.15",
"description": "A framework-agnostic library to manage calendars",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"repository": "https://github.com/alaindet/date-pickle",
"homepage": "https://github.com/alaindet/date-pickle",
"bugs": "https://github.com/alaindet/date-pickle/issues",
"keywords": [
"date-pickle",
"typescript",
"javascript",
"calendar",
"time"
],
"author": "Alain D'Ettorre <alain.det@gmail.com>",
"license": "MIT",
"scripts": {
"start": "npx nodemon",
"build": "rimraf ./dist && tsc -p tsconfig.build.json",
"test": "cross-env NODE_ICU_DATA=node_modules/full-icu jest",
"test:watch": "cross-env NODE_ICU_DATA=node_modules/full-icu jest --watch",
"lint": "eslint --ext .js,.ts .",
"format": "prettier --write \"src/**/*.ts\"",
"release": "npm run build && npm pack",
"prepare": "npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm test && npm run lint"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"cross-env": "^7.0.3",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"full-icu": "^1.5.0",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"files": [
"/dist"
]
}