forked from cludden/ajv-moment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.07 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
{
"name": "ajv-moment",
"version": "2.0.3",
"description": "robust date validation for ajv",
"main": "./dist/index.js",
"scripts": {
"build": "babel lib -d dist",
"coverage": "./node_modules/.bin/babel-node ./node_modules/.bin/babel-istanbul cover tape test/tests/**/*.test.js",
"postversion": "npm run build",
"test": "mocha --compilers js:babel-register test/index.test.js"
},
"keywords": [
"ajv",
"date",
"moment"
],
"author": "chris ludden",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cludden/ajv-moment.git"
},
"types": "index.d.ts",
"dependencies": {},
"devDependencies": {
"ajv": "^4.1.7",
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-istanbul": "^0.11.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.14.0",
"babel-tape-runner": "^2.0.1",
"chai": "^3.5.0",
"eslint": "^3.1.0",
"lodash": "^4.13.1",
"mocha": "^2.5.3",
"moment": "^2.14.1",
"sinon": "^1.17.4"
}
}