-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 902 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
{
"name": "jycm",
"version": "0.1.0",
"description": "JS implementation for jycm",
"author": "sunao_0626@hotmail.com",
"license": "MIT",
"homepage": "https://github.com/eggachecat/jycm-js",
"repository": "https://github.com/eggachecat/jycm-js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@types/jest": "^29.5.11",
"babel-loader": "^9.1.3",
"core-js": "^3.35.0",
"jest": "^29.7.0",
"regenerator-runtime": "^0.14.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"test": "jest",
"pub": "npm version patch --force && npm publish"
}
}