forked from jaikme/pos-mamba-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.45 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "mamba-sdk",
"version": "2.0.0",
"description": "SDK for developing in the Mamba web environment",
"repository": "https://github.com/stone-payments/pos-mamba-sdk.git",
"author": "Stone Payments - Mamba Team",
"contributors": [
"Christian Kaisermann <[email protected]>",
"Pedro Lancelloti <[email protected]>",
"Jaime Costa Marques <[email protected]>",
"Jackson Garcia <[email protected]>",
"Vitor Paladini <[email protected]>"
],
"license": "Apache-2.0",
"engines": {
"node": ">= 8.10.0",
"npm": ">= 5.6.0"
},
"scripts": {
"postinstall": "lerna bootstrap --no-ci",
"lint": "npm run lint:css; npm run lint:js",
"lint:js": "eslint \"*.js\" \"{tools,packages}/**/*.{js,html,svelte}\"",
"lint:css": "stylelint \"packages/**/*.{html,svelte,css,pcss}\"",
"format:js": "prettier --write \"*.js\" \"{tools,packages}/**/*.js\" && eslint --fix \"*.js\" \"{tools,packages}/**/*.{js,html,svelte}\"",
"format:css": "prettier --write \"packages/**/*.{css,pcss}\" && stylelint --fix \"packages/**/*.{html,svelte,css,pcss}\"",
"format": "npm run format:css; npm run format:js",
"test": "jest --no-cache",
"test:watch": "jest --watch",
"test:ci": "jest --no-cache --verbose",
"link:packages": "lerna exec npm link",
"check-next-version": "echo 'n' | lerna version",
"preversion": "npm run test",
"release": "lerna publish"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"linters": {
"*.{html,svelte}": [
"eslint --fix",
"stylelint --fix",
"git add"
],
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{pcss,css}": [
"prettier --write",
"stylelint --fix",
"git add"
]
}
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@commitlint/cli": "^7.5.0",
"@commitlint/config-conventional": "^7.5.0",
"@gen/rollup-plugin-generate-html": "^0.1.1",
"@mamba/app": "file:packages/components/App",
"@mamba/configs": "file:packages/configs",
"@mamba/pos": "file:packages/pos",
"@mamba/styles": "file:packages/styles",
"@mamba/switch": "file:packages/components/Switch",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.5.0",
"commitizen": "^3.0.5",
"core-js": "^3.0.0",
"cross-env": "^5.2.0",
"deasync": "^0.1.14",
"eslint": "^5.12.0",
"git-cz": "^3.0.0",
"html-minifier": "^4.0.0",
"husky": "^1.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.5.0",
"jest-canvas-mock": "^1.1.0",
"lerna": "^3.10.7",
"lint-staged": "^8.1.0",
"postcss": "^7.0.13",
"prettier": "^1.15.3",
"quickenv": "^0.0.6",
"rollup": "^1.1.0",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-copy": "^0.3.0",
"rollup-plugin-filesize": "^6.0.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-serve": "^1.0.0",
"rollup-plugin-svelte": "^5.0.1",
"rollup-plugin-url": "^2.1.0",
"rollup-plugin-virtual": "^1.0.1",
"stylelint": "^9.10.0",
"svelte": "^2.16.0",
"svelte-preprocess": "^2.4.3"
}
}