forked from fnando/cpf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.25 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
{
"name": "@fnando/cpf",
"version": "0.1.1",
"description": "Validate, generate and format CPF numbers",
"main": "dist/cpf.js",
"module": "src/cpf.js",
"files": [
"src/**/*",
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "yarn eslint src",
"test": "yarn lint && mocha --require babel-core/register spec",
"js:dist:expanded": "webpack --mode=development --target=web",
"js:dist:minified": "NODE_ENV=production webpack --mode=production --target=web",
"js:dist:node": "webpack --config ./webpack.config.node.js --mode=development --target=node",
"dist": "rm -rf dist && yarn test && yarn js:dist:expanded && yarn js:dist:minified && yarn js:dist:node"
},
"repository": {
"type": "git",
"url": "https://github.com/fnando/cpf.git"
},
"keywords": [
"cpf",
"document"
],
"author": "Nando Vieira <fnando.vieira@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fnando/cpf/issues"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.4",
"babel-preset-env": "1.6.1",
"chai": "4.1.2",
"eslint": "4.19.1",
"mocha": "5.0.5",
"uglifyjs-webpack-plugin": "1.2.4",
"webpack": "4.4.1",
"webpack-cli": "2.0.13"
}
}