-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.6 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
{
"name": "@pearwb/struct-check",
"version": "0.3.3",
"description": "Check object struct and type",
"main": "dist",
"scripts": {
"start": "babel-node -x .js,.ts src",
"build": "npm run build.compile && npm run build.types",
"build.compile": "babel src --out-dir dist -x .js,.ts --ignore **/*.d.ts,**/*.test.js,**/*.test.ts,**/__tests__ --delete-dir-on-start",
"build.types": "tsc --project tsconfig.types.json && tscpaths -p tsconfig.types.json -s ./src -o ./dist",
"test": "lint-staged && jest --passWithNoTests",
"prepare": "node prepare.js"
},
"repository": "pearwb1235/struct-check",
"keywords": [],
"author": "pearwb1235",
"license": "ISC",
"bugs": {
"url": "https://github.com/pearwb1235/struct-check/issues"
},
"homepage": "https://github.com/pearwb1235/struct-check",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.15.4",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-plugin-root-import": "^6.6.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.4",
"lint-staged": "^11.2.0",
"prettier": "^2.4.1",
"tscpaths": "^0.0.9",
"typescript": "^4.4.3"
},
"dependencies": {
"@babel/runtime": "^7.15.4"
}
}