forked from comprae/pagarme-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.19 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
{
"name": "pagarme",
"version": "4.32.0",
"description": "A JavaScript library to interface with Pagar.me API",
"main": "pagarme.js",
"scripts": {
"build": "run-p build:dev build:commonjs build:browser",
"build:commonjs": "webpack --optimize-minimize --optimize-dedupe --output-filename pagarme.min.js",
"build:browser": "webpack --optimize-minimize --optimize-dedupe --config webpack.config.browser.js --output-filename pagarme.min.js",
"build:dev": "run-s build:dev:node build:dev:browser",
"build:dev:node": "webpack",
"build:dev:browser": "webpack --config webpack.config.browser.js",
"start": "npm run build",
"docs": "jsdoc -c jsdoc.json",
"docs:bump": "gh-pages -d docs",
"predocs:bump": "npm run docs",
"test": "run-s test:unit",
"pretest": "npm run build:dev",
"test:unit": "run-p test:unit:server test:unit:tests",
"test:unit:server": "env PORT=8080 babel-node ./test/echoServer",
"test:unit:tests": "wait-on tcp:127.0.0.1:8080 && jest --verbose --maxWorkers=1",
"posttest:unit:tests": "curl http://localhost:8080/kill",
"lint": "eslint 'lib/**/*.js' 'test/**/*.js'"
},
"keywords": [],
"author": "Pagar.me Pagamentos S/A",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.17.0",
"babel-jest": "18.0.0",
"babel-loader": "6.2.5",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-ramda": "1.2.0",
"babel-preset-es2015": "6.16.0",
"bluebird": "3.5.1",
"eslint": "4.18.2",
"eslint-config-airbnb-base": "8.0.0",
"eslint-loader": "1.5.0",
"eslint-plugin-import": "1.16.0",
"gh-pages": "0.12.0",
"isomorphic-fetch": "2.2.1",
"jest": "19.0.2",
"jsdoc": "3.6.7",
"json-loader": "0.5.4",
"moment": "2.23.0",
"node-rsa": "0.4.2",
"npm-run-all": "4.1.5",
"openport": "0.0.4",
"postman-jsdoc-theme": "0.0.2",
"qs": "6.3.2",
"ramda": "0.22.1",
"wait-on": "2.0.2",
"webpack": "1.13.2"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js",
"!lib/**/*.spec.js"
],
"coverageReporters": [
"lcov"
],
"coverageDirectory": "<rootDir>/coverage"
}
}