-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.61 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "functional-validators",
"version": "0.1.0",
"description": "Functional validators and tools to compose them",
"main": "dist/index.js",
"scripts": {
"test": "NODE_ENV=test node_modules/.bin/mocha --opts mocha.opts 'src/**/*.spec.js*'",
"test:watch": "NODE_ENV=test node_modules/.bin/mocha --opts mocha.opts --watch 'src/**/*.spec.js*'",
"test:coverage": "NODE_ENV=test node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --opts mocha.opts --reporter spec 'src/**/*.spec.js*'",
"generate-docs": "node_modules/.bin/jsdoc -c jsdoc.json",
"build": "node_modules/.bin/rimraf dist && node_modules/.bin/babel src --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cliftonlabs/functional-validators.git"
},
"keywords": [
"functional",
"validation",
"validators",
"redux-form"
],
"author": "Nathan Sharpe <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cliftonlabs/functional-validators/issues"
},
"homepage": "https://github.com/cliftonlabs/functional-validators#readme",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"docdash": "^0.4.0",
"mocha": "^3.2.0",
"rimraf": "^2.6.0"
},
"dependencies": {
"babel-cli": "^6.23.0",
"jsdoc": "^3.4.3",
"lodash.isfinite": "^3.3.2",
"lodash.tonumber": "^4.0.3",
"lodash.trim": "^4.5.1"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"ignore": [
"spec.js",
"_*"
]
}
}