-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 935 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
{
"name": "filename-utils",
"description": "A tiny yet powerfull collection of utils for processing filenames compareable to Apaches FilenameUtils for Java.",
"version": "1.0.2",
"author": "Tobias Dittmann <hello@ditsche.dev> (https://ditsche.dev)",
"main": "dist/index.js",
"repository": "https://github.com/ditschedev/filename-utils",
"homepage": "https://github.com/ditschedev/filename-utils",
"license": "MIT",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config=jest.config.json",
"release": "yarn test && standard-version && git push --follow-tags && npm publish"
},
"keywords": [
"filename",
"extension",
"filenameUtils",
"filename utils",
"utils",
"util",
"io"
],
"devDependencies": {
"@types/jest": "^25.2.1",
"jest": "^25.5.4",
"standard-version": "^8.0.1",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
}
}