-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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": "dev-timer",
"version": "0.4.0",
"description": "Super interval timer that can handle multiple timers simulteanously",
"main": "dist/Timer.js",
"types": "dist/Timer.d.ts",
"scripts": {
"build": "tsc --module commonjs --outDir ./dist && tsc && npx typedoc --plugin typedoc-plugin-markdown --out docs src/Timer.ts",
"release:major": "npm version major --no-git-tag-version",
"release:minor": "npm version minor --no-git-tag-version",
"release:patch": "npm version patch --no-git-tag-version"
},
"files": [
"/dist",
"/ES"
],
"repository": {
"type": "git",
"url": "https://github.com/gaskam/dev-timer"
},
"keywords": [
"timer",
"js",
"timerjs",
"interval"
],
"author": "Gaskam",
"license": "BSD-3-Clause",
"devDependencies": {
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^4.0.1",
"typescript": "^5.1.6"
},
"autoupdate": {
"source": "npm",
"target": "dev-timer",
"fileMap": [
{
"basePath": "dist",
"files": [
"*.js",
"*.d.ts"
]
},
{
"basePath": "",
"files": [
"ES/*.js",
"ES/*.d.ts"
]
}
]
}
}