-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 955 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
{
"name": "@bedrockio/chrono",
"version": "0.3.0",
"description": "Minimal library for working with dates.",
"scripts": {
"test": "jest",
"lint": "eslint",
"build": "scripts/build",
"types": "tsc",
"prepublishOnly": "yarn build && yarn types"
},
"main": "./dist/cjs/index.js",
"module": "./src/index.js",
"types": "./types/index.d.ts",
"repository": "https://github.com/bedrockio/chrono",
"author": "Andrew Plummer <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@bedrockio/prettier-config": "^1.0.2",
"eslint": "^8.26.0",
"eslint-plugin-bedrock": "^1.0.24",
"jest": "^29.6.2",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"typescript": "^4.9.5"
},
"prettier": "@bedrockio/prettier-config",
"volta": {
"node": "20.17.0",
"yarn": "1.22.22"
}
}