forked from AlchemyAlcove/FormFormatters
-
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.15 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.15 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": "form-formatters",
"version": "0.3.0",
"private": false,
"description": "Formatters and masks for validating and manipulating user input.",
"author": "AlchemyAlcove",
"repository": {
"type": "git",
"url": "https://github.com/AlchemyAlcove/FormFormatters"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src",
"build": "babel src --out-dir dist",
"test": "ava"
},
"dependencies": {
"lodash": "4.17.5",
"moment": "2.21.0",
"numeral": "2.0.6"
},
"devDependencies": {
"ava": "0.25.0",
"babel-cli": "6.26.0",
"babel-eslint": "8.2.2",
"babel-plugin-array-includes": "2.0.3",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-register": "6.26.0",
"eslint": "4.18.2",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-standard": "3.0.1"
},
"ava": {
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": false,
"require": [
"babel-register"
],
"babel": "inherit"
}
}