-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1007 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
33
34
35
36
37
38
{
"name": "flowtime",
"version": "1.2.5",
"description": "An unpredictable time library for JavaScript",
"license": "MIT",
"homepage": "http://ucodia.space/flowtime",
"repository": "github:ucodia/flowtime",
"bugs": "https://github.com/ucodia/flowtime/issues",
"keywords": [
"flow",
"time"
],
"author": "Lionel Ringenbach <[email protected]> (https://ucodia.space/)",
"main": "dist/flowtime.js",
"umd:main": "dist/flowtime.umd.js",
"unpkg": "dist/flowtime.umd.js",
"module": "dist/flowtime.mjs",
"source": "index.js",
"files": [
"dist/*"
],
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "jest --coverage --ci",
"watch": "jest --watch",
"format": "prettier --write *.js",
"prepare": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/preset-env": "^7.22.20",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"microbundle": "^0.15.1",
"prettier": "^3.0.3"
}
}