-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 917 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
30
31
32
33
34
35
36
{
"name": "house-rules",
"version": "0.8.1",
"description": "Chainable rules for input validation",
"main": "dist/index.js",
"repository": {
"url": "https://github.com/bradwestfall/house-rules"
},
"keywords": [
"validation"
],
"scripts": {
"prepare": "npm run build",
"clean": "rimraf dist",
"build": "npm run clean && babel src --out-dir dist",
"sandbox": "babel-node sandbox/index.js",
"test": "mocha test/**/**.js --compilers js:babel-core/register"
},
"author": "Brad Westfall",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.11.4",
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-2": "^6.3.13",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"rimraf": "^2.6.1"
},
"dependencies": {
"lodash": "^4.17.4",
"moment": "^2.18.1",
"validator": "^5.7.0"
}
}