-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "itaucripto",
"version": "1.0.2",
"description": "Versão javascript da antiga itaucripto.dll (x86). Ideal quando necessário rodar sobre ARM, AMD64 (x86_64), GNU/Linux, BSD et cetera",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"lint": "eslint index.js",
"build": "browserify -s Itaucripto -e index.js -o dist/itaucripto.js",
"postbuild": "uglifyjs dist/itaucripto.js -o dist/itaucripto.min.js -cm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nagaozen/itaucripto.git"
},
"keywords": [
"itaucripto",
"itau",
"shopline"
],
"author": "Nagao, Fabio Zendhi <https://github.com/nagaozen>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nagaozen/itaucripto/issues"
},
"homepage": "https://www.itau.com.br/empresas/recebimentos/shopline/",
"jest": {
"verbose": true
},
"runkitExampleFilename": "runkit.js",
"devDependencies": {
"browserify": "^16.2.2",
"coveralls": "^3.0.2",
"eslint": "^5.0.1",
"eslint-plugin-nodeca": "^1.0.3",
"jest": "^23.1.0",
"uglify-js": "^3.4.4"
}
}