forked from DanFMoore/react-validatorjs-strategy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
{
"name": "react-validatorjs-strategy",
"version": "0.1.7",
"description": "Strategy for using validatorjs with react-validation-mixin",
"main": "./dist/strategy.js",
"dependencies": {
"validatorjs": "2.0.5"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.4.5",
"babel-loader": "^6.2.2",
"babel-plugin-transform-es2015-modules-umd": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"webpack": "^1.12.13",
"jasmine-core": "^2.2.0",
"proxyquire": "*",
"jasmine-node": "*"
},
"scripts": {
"test": "jasmine-node tests",
"webpack:dev": "webpack --dev",
"webpack": "webpack",
"build": "babel --presets es2015 src -d dist",
"build:umd": "babel ./src/strategy.js --presets es2015 --plugins transform-es2015-modules-umd -o ./dist/strategy-umd.js -v",
"prepublish": "npm run build && npm run build:umd"
},
"repository": {
"type": "git",
"url": "/~https://github.com/TheChech/react-validatorjs-strategy.git"
},
"keywords": [
"react",
"validation",
"strategy"
],
"author": "Dan Moore",
"license": "Unlicense",
"bugs": {
"url": "/~https://github.com/TheChech/react-validatorjs-strategy/issues"
},
"homepage": "/~https://github.com/TheChech/react-validatorjs-strategy#readme",
"engines": {
"node": ">= 4.0.0"
}
}