forked from guilhermearaujo/boleto.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.72 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
{
"name": "boleto.js",
"version": "1.0.2",
"description": "Renderizador de código de barras para boletos bancários",
"main": "src/boleto.js",
"scripts": {
"build": "npm run build-debug && npm run build-min",
"build-debug": "browserify src/boleto.js -s Boleto -t [babelify] -p [browserify-banner --file .banner ] -o dist/boleto.js",
"build-min": "uglifyjs dist/boleto.js --comments '/!/' -m screw_ie8=true -c screw_ie8=true,unused=false -o dist/boleto.min.js",
"build-watch": "watchify src/boleto.js -s Boleto -t [babelify] -o dist/boleto.js -v",
"prepublish": "babel src --out-dir lib --loose all",
"test": "istanbul cover _mocha -- --reporter spec --require jsdom-global/register --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guilhermearaujo/boleto.js.git"
},
"keywords": [
"boleto",
"código",
"barras",
"barcode"
],
"author": "Guilherme Araújo <[email protected]> (https://github.com/guilhermearaujo)",
"license": "MIT",
"bugs": {
"url": "https://github.com/guilhermearaujo/boleto.js/issues"
},
"homepage": "https://github.com/guilhermearaujo/boleto.js#readme",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-es2015-loose": "^7.0.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"browserify-banner": "1.0.8",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.4.0",
"istanbul": "^1.1.0-alpha",
"jsdom": "9.6.0",
"jsdom-global": "2.1.0",
"mocha": "^3.1.0",
"rewire": "^2.5.2",
"sinon": "^1.17.6",
"uglify-js": "^2.4.24",
"watchify": "^3.4.0",
"xmlserializer": "^0.6.0"
}
}