-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.2 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.2 KB
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
{
"name": "react-validatorjs-strategy",
"version": "0.2.0",
"description": "Strategy for using validatorjs with react-validation-mixin",
"main": "./lib/strategy.js",
"dependencies": {
"validatorjs": "3.9.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-plugin-transform-es2015-modules-umd": "^6.5.0",
"jasmine-core": "^2.2.0",
"jasmine-node": "*",
"onchange": "^2.0.0",
"uglify-js": "^2.6.1"
},
"scripts": {
"start": "npm install && npm run build && npm run watch",
"watch": "onchange './lib/strategy.js' -- npm run build",
"test": "jasmine-node tests",
"build": "npm run build:umd",
"build:umd": "babel ./lib/strategy.js --plugins transform-es2015-modules-umd | uglifyjs -o ./dist/strategy.min.js --"
},
"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"
}
}