-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"name": "@oasis-cloud/countdown",
"version": "0.0.1",
"description": "The time countdown tool provides a countdown queue function, avoids opening multiple timers, and supports clearing a single countdown task.More efficient countdown.",
"main": "lib/index.umd.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"private": false,
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha",
"build": "rollup -c rollup.config.ts --configPlugin typescript",
"release": "release-it"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oasis-cloud/countdown.git"
},
"keywords": [
"countdown"
],
"author": "oasis-cloud",
"license": "ISC",
"bugs": {
"url": "https://github.com/oasis-cloud/countdown/issues"
},
"homepage": "https://github.com/oasis-cloud/countdown#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"mocha": "^9.1.3",
"prettier": "^2.8.8",
"release-it": "^15.10.1",
"rollup": "^2.58.3",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
}
}