forked from BrasilAPI/cep-promise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.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
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
{
"name": "cep-promise",
"version": "3.0.9",
"description": "Busca por CEP integrado diretamente aos serviços dos Correios e ViaCEP",
"main": "dist/cep-promise.min.js",
"module": "dist/cep-promise-browser.min.js",
"scripts": {
"test": "npm run coverage",
"coverage": "babel-node node_modules/.bin/babel-istanbul cover _mocha -- --timeout 60000 test/**/*.spec.js",
"test-unit": "mocha --compilers js:babel-core/register test/unit/**/*.spec.js",
"test-unit-watch": "mocha --watch --compilers js:babel-core/register test/unit/**/*.spec.js",
"test-e2e": "npm run build && mocha --compilers js:babel-core/register test/e2e/**/*.spec.js",
"test-e2e-watch": "mocha --watch --compilers js:babel-core/register test/e2e/**/*.spec.js",
"lint-check": "standard",
"lint-fix": "standard --fix",
"build-browser": "rollup -c && uglifyjs dist/cep-promise-browser.js -cm -o dist/cep-promise-browser.min.js",
"build-node": "rollup -c && uglifyjs dist/cep-promise.js -cm -o dist/cep-promise.min.js",
"build": "npm run build-browser && npm run build-node",
"prepublishOnly": "npm run build"
},
"browser": "dist/cep-promise-browser.min.js",
"repository": {
"type": "git",
"url": "https://github.com/filipedeschamps/cep-promise.git"
},
"author": "Filipe Deschamps",
"license": "MIT",
"bugs": {
"url": "https://github.com/filipedeschamps/cep-promise/issues"
},
"keywords": [
"cep",
"correios",
"zipcode",
"zip",
"promise",
"viacep"
],
"homepage": "https://github.com/filipedeschamps/cep-promise",
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.18.2",
"babel-eslint": "7.1.1",
"babel-istanbul": "0.12.2",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-builtin-extend": "1.1.2",
"babel-preset-env": "1.6.1",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"chai-subset": "1.3.0",
"mocha": "5.2.0",
"nock": "9.6.1",
"rollup": "0.56.0",
"rollup-plugin-babel": "3.0.3",
"rollup-plugin-commonjs": "8.3.0",
"rollup-plugin-node-resolve": "3.0.3",
"standard": "8.6.0",
"uglify-js": "2.7.5"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it",
"afterEach"
]
},
"dependencies": {
"isomorphic-unfetch": "3.0.0"
},
"files": [
"dist",
"index.d.ts"
]
}