-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.81 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
{
"name": "form-formatters",
"version": "1.2.6",
"private": false,
"description": "Formatters and masks for validating and manipulating user input.",
"author": "AlchemyAlcove",
"repository": {
"type": "git",
"url": "https://github.com/AlchemyAlcove/FormFormatters"
},
"main": "index.js",
"module": "dist/esm/index.js",
"types": "index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"lint": "eslint src test",
"build": "npm-run-all --parallel build:*",
"prebuild:webpack": "rimraf dist/cjs dist/umd",
"build:webpack": "npm-run-all --parallel webpack:*",
"webpack:dev": "webpack --output-filename index.js --mode development",
"webpack:prod": "cross-env NODE_ENV=production webpack --output-filename index.min.js --mode production",
"prebuild:esm": "rimraf dist/esm",
"build:esm": "cross-env BABEL_ENV=esm babel src --out-dir dist/esm",
"test": "ava"
},
"dependencies": {
"core-js": "^3.6.5",
"lodash": ">= 4",
"moment": ">= 2",
"numeral": ">= 2"
},
"devDependencies": {
"@ava/babel": "1.0.1",
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/register": "7.9.0",
"ava": "3.8.1",
"babel-loader": "8.1.0",
"cross-env": "7.0.2",
"eslint": "6.8.0",
"eslint-config-standard": "14.1.1",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"form-formatters": "1.0.3",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"webpack": "4.43.0",
"webpack-cli": "3.3.11"
},
"ava": {
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"require": [
"@babel/register"
],
"babel": true
}
}