-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.37 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
{
"name": "@fnando/cpf",
"version": "1.0.2",
"description": "Validate, generate and format CPF numbers",
"main": "es/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"scripts": {
"lint": "yarn eslint src",
"test": "yarn jest",
"js:dist": "tsc",
"js:dist:web": "webpack --entry ./es/index.js --output ./web/cpf.min.js --mode production --target web --output-library-export var --output-library CPF --devtool source-map",
"js:dist:node": "webpack --entry ./es/index.js --output ./commonjs/index.js --mode production --target node --output-library-target commonjs --devtool source-map",
"dist": "rm -rf {es,commonjs,web} && yarn test && yarn js:dist && yarn js:dist:web && yarn js:dist:node"
},
"repository": {
"type": "git",
"url": "https://github.com/fnando/cpf.git"
},
"keywords": [
"cpf",
"document"
],
"author": "Nando Vieira <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fnando/cpf/issues"
},
"devDependencies": {
"@babel/types": "*",
"@fnando/codestyle": "*",
"@fnando/eslint-config-codestyle": "*",
"@types/jest": "*",
"eslint": "*",
"eslint-config-prettier": "*",
"eslint-plugin-prettier": "*",
"jest": "*",
"jest-filename-transform": "*",
"ts-jest": "*",
"typescript": "*",
"webpack": "*",
"webpack-cli": "*"
}
}