-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
{
"name": "@ebanx/lib-js",
"version": "1.15.7",
"description": "EBANX Lib JS",
"main": "dist/ebanx-libjs-latest.min.js",
"scripts": {
"prepare": "npm run build",
"prebuild": "shx rm -rf dist",
"build": "npm run build:local && npm run build:xborder",
"build:local": "rollup --config ./rollup-local.config.js",
"build:xborder": "rollup --config ./rollup-xborder.config.js",
"lint": "eslint './**/*.{js,ts}'",
"test": "jest --env=jsdom"
},
"repository": {
"type": "git",
"url": "git@github.com:ebanx/lib-js.git"
},
"author": "EBANX",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.14.4",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-replace": "^2.3.1",
"@types/faker": "^4.1.10",
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"babel-jest": "^25.5.1",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"faker": "^4.1.0",
"jest": "^25.1.0",
"rollup": "^1.32.1",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-generate-html-template": "^1.6.1",
"rollup-plugin-license": "^0.13.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.26.0",
"shx": "^0.3.2",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
}
}