This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.94 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "lieu",
"version": "1.4.0",
"description": "Javascript plugin for localize string.",
"main": "dist/lieu.js",
"module": "dist/lieu.cjs",
"jsdelivr": "dist/lieu.umd.min.js",
"umd:main": "dist/lieu.umd.min.js",
"cdn": "dist/lieu.umd.min.js",
"scripts": {
"test": "jest",
"cover": "jest --coverage",
"lint": "eslint --ext .js --ignore-path .gitignore --fix src __test__",
"build": "rollup --config --sourcemap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeadrateMSK/lieu.git"
},
"keywords": [
"plugin",
"js",
"localize",
"localization"
],
"author": "LeadrateMSK <web@leadrate.pro>",
"license": "MIT",
"bugs": {
"url": "https://github.com/LeadrateMSK/lieu/issues"
},
"homepage": "https://github.com/LeadrateMSK/lieu#readme",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/runtime": "^7.18.3",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-replace": "^4.0.0",
"babel-jest": "^29.0.2",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2",
"json-file": "^0.1.0",
"prettier": "^2.6.2",
"rollup": "^2.75.6",
"rollup-plugin-terser": "^7.0.2",
"vue": "^3.2.41"
},
"jest": {
"collectCoverageFrom": [
"src/lieu.js"
],
"testMatch": [
"<rootDir>/__test__/*.test.js"
],
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}