-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.22 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
{
"name": "@drovp/save-as-path",
"version": "3.1.0",
"description": "Drovp utility to determine path for file results.",
"homepage": "https://github.com/drovp/save-as-path",
"bugs": "https://github.com/drovp/save-as-path/issues",
"repository": "github:drovp/save-as-path",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"drovp",
"util",
"destination",
"path",
"options",
"schema"
],
"author": "tomasklaen",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "rimraf dist",
"start": "ava --watch",
"test": "ava",
"preversion": "npm-run-all clean build",
"git-push": "git push",
"npm-publish": "npm publish",
"postversion": "npm-run-all git-push npm-publish"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"devDependencies": {
"@types/node": "^18.0.6",
"ava": "^4.3.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@tomasklaen/checksum": "^1.1.0",
"dayjs": "^1.11.4",
"expand-template-literal": "^1.0.3",
"platform-paths": "^1.2.2"
}
}