forked from Gennadiu1977/bradoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 KB
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
{
"name": "bradoc",
"description": "A node module to gen, validate and format Brazilian documents' numbers.",
"version": "1.0.0",
"homepage": "",
"author": {
"name": "Ju Gonçalves",
"email": "code@jugoncalv.es",
"url": "http://jugoncalv.es"
},
"repository": {
"type": "git",
"url": "https://github.com/jugoncalves/bradoc"
},
"bugs": {
"url": ""
},
"licenses": [
{
"type": "MIT",
"url": "/blob/master/LICENSE-MIT"
}
],
"main": "dist/bradoc.js",
"engines": {
"node": ">= 0.12.7"
},
"scripts": {
"test": "./node_modules/.bin/mocha --require babel-polyfill --compilers js:babel-core/register test",
"js": "./node_modules/.bin/browserify index.js --s bradoc -t [babelify] > dist/bradoc.js",
"min": "./node_modules/.bin/uglifyjs dist/bradoc.js -o dist/bradoc.min.js",
"bundle": "npm run js && npm run min",
"prepublish": "npm run bundle"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babelify": "^7.3.0",
"browserify": "^12.0.0",
"chai": "~3.4.0",
"mocha": "~2.3.3",
"uglify-es": "^3.1.3",
"uglify-js": "^2.4.16"
}
}