-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "@paulsmith/timee",
"version": "0.1.0",
"description": "Timer Event Emitter",
"keywords": [
"emitter",
"events",
"event",
"eventemitter",
"dayjs",
"date",
"time",
"timer",
"countdown",
"stopwatch"
],
"main": "dist/timee.cjs.js",
"module": "dist/timee.esm.js",
"browser": "dist/timee.umd.js",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "rollup -c",
"watch": "rollup -c -w"
},
"author": "Paul Smith <paul@paulsmith.io>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-proposal-async-generator-functions": "^7.18.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@rollup/plugin-node-resolve": "^15.1.0",
"babel-plugin-inline-json-import": "^0.3.2",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"esm": "^3.2.25",
"jest": "^29.5.0",
"keypress": "^0.2.1",
"npm-run-all": "^4.1.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-polyfills": "^0.2.1"
},
"dependencies": {
"dayjs": "^1.11.9"
}
}