-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 897 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 897 Bytes
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
{
"name": "@freckle/parser",
"version": "2.0.0",
"description": "One that parses",
"main": "./dist/index.js",
"repository": "https://github.com/freckle/parser-js.git",
"author": "Freckle",
"license": "MIT",
"scripts": {
"build": "tsc -d",
"test": "jest",
"format": "prettier --write 'src/**/*.js'",
"check-git-clean": "./check-git-clean.sh"
},
"dependencies": {
"@freckle/exhaustive": "^1.0.1",
"@freckle/non-empty": "^3.0.0",
"lodash": "4.17.23",
"moment-timezone": "0.6.1"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"packageManager": "yarn@4.12.0"
}