-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 983 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 983 Bytes
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
{
"name": "@ewarren/extra-validation",
"version": "0.1.1",
"description": "Validate form fields with special rules",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist && cp ./src/data.json ./dist",
"build:data": "node -stack_size=2400 bin/build-data-file.js",
"test": "mocha",
"prepublishOnly": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Elizabeth-Warren/extra-validation.git"
},
"author": "Joe Kent",
"license": "MIT",
"bugs": {
"url": "https://github.com/Elizabeth-Warren/extra-validation/issues"
},
"homepage": "https://github.com/Elizabeth-Warren/extra-validation#readme",
"devDependencies": {
"@ewarren/unitedstatesofamerica": "^1.1.1",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"zipcodes": "^8.0.0"
},
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"leven": "^3.1.0"
}
}