-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 994 Bytes
/
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
{
"private": true,
"name": "date-based-version",
"description": "Tool to generate date-based versions",
"license": "MIT",
"author": "Vincent Bailly",
"repository": {
"type": "git",
"url": "https://github.com/VincentBailly/date-based-version"
},
"version": "2.5.0",
"bin": {
"date-base-version": "./bin/setVersion.js"
},
"scripts": {
"build": "tsc",
"build-dist": "npx rimraf lib && yarn build && webpack && yarn test && node ./buildTools/create-dist.js",
"test": "jest ./src/__tests__",
"prettify": "prettier --write src bin README.md && prettier-package-json --write package.json"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^12.0.0",
"execa": "^4.0.1",
"fs-extra": "^9.0.0",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"prettier-package-json": "^2.1.3",
"tempy": "^0.5.0",
"ts-jest": "^26.0.0",
"typescript": "^3.9.2",
"webpack": "^5.89.0",
"webpack-cli": "^4.6.0"
}
}