This repository was archived by the owner on Jan 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.2 KB
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
{
"name": "babel-plugin-object-to-json-parse",
"version": "0.2.3",
"main": "dist/index.js",
"scripts": {
"prepare": "git config --local core.hooksPath .githooks",
"build": "rm -rf dist/** && tsc",
"fmt": "prettier --write \"src/**/*.ts\"",
"lint": "eslint 'src/**/*.ts' --fix",
"test": "find test/__fixtures__ -name *.js | xargs -L1 node && jest"
},
"dependencies": {
"@babel/core": "^7.20.5",
"@babel/types": "^7.20.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@types/babel-core": "^6.25.7",
"@types/babel-plugin-tester": "^9.0.5",
"@types/babel-types": "^7.0.11",
"@types/jest": "^28.1.2",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.47.1",
"babel-plugin-tester": "^10.1.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.0",
"ts-jest": "^28.0.5",
"typescript": "^4.9.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint",
"npm run fmt"
]
},
"author": "nd-02110114 <nd.12021218@gmail.com>",
"license": "MIT",
"files": [
"dist",
"LICENSE",
"README.md"
]
}