-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 997 Bytes
/
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
{
"name": "@nib/schema-validator",
"description": "A Universal-JavaScript utility for validating value objects.",
"version": "6.2.0",
"main": "./dist/lib/index.js",
"dependencies": {
"@digitaledgeit/filter-chain": "^0.3.0",
"@digitaledgeit/validator-chain": "^0.3.0",
"object-path": "^0.11.5"
},
"devDependencies": {
"@nib/validation-methods": "^1.1.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"eslint": "^1.9.0",
"eslint-config-jameslnewell": "0.4.2",
"mocha": "^2.3.4"
},
"scripts": {
"lint": "eslint lib/*.js test/*.js",
"test": "mocha --recursive -R nyan --compilers js:babel-register",
"test.watch": "npm run test -- --watch",
"build": "babel lib/**/*.js -d ./dist --source-maps",
"build.watch": "npm run build -- --watch",
"prepublish": "npm run lint && npm run build && npm run test"
},
"author": "James Newell, Shannon Marsh, Matthew Turner, Chris Close"
}