-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 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
48
49
{
"name": "matice",
"version": "1.2.0",
"description": "Matice - Use your Laravel translations in JavaScript",
"main": "dist/matice.js",
"types": "dist/matice.d.ts",
"directories": {
"test": "jest"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "tsc && webpack",
"prepare": "npm run build --production"
},
"repository": {
"type": "git",
"url": "https://github.com/GENL/matice.git"
},
"keywords": [
"matice",
"laravel",
"translations"
],
"author": "Ekcel Ekoumelong",
"license": "MIT",
"bugs": {
"url": "https://github.com/GENL/matice/issues"
},
"homepage": "https://github.com/GENL/matice#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"jest": "^29.7.0",
"release-it": "^17.10.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"global": "^4.4.0",
"uglify-js": "^3.19.3"
}
}