-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.23 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "octaform-additional",
"version": "1.2.0",
"description": "Octaform Additional is a package that provides you a pre-set of validation. To know more about the Octaform Validation Core please check out the official documentation in https://github.com/octaform/octaform",
"main": "./src/octaform-additional.js",
"homepage": "https://github.com/octaform/octaform#readme",
"author": "Octaform",
"license": "MIT",
"keywords": [
"form",
"forms",
"formjs",
"form validation",
"validation",
"validations",
"react",
"react-native",
"angular",
"vue",
"javascript",
"vanilla",
"additional",
"additional validations",
"octaform",
"octaform-additional",
"octaform validations"
],
"scripts": {
"start": "webpack --watch",
"test": "jest -c ./scripts/test.dev.json --colors --watchAll",
"test:prod": "jest -c ./scripts/test.prod.json --colors",
"build": "npm run clean && webpack --config ./scripts/build.dev.js",
"build:prod": "npm run clean && webpack -p --progress --config ./scripts/build.prod.js",
"clean": "rimraf dist",
"deploy": "yarn install && yarn test:prod && yarn build:prod && npm publish dist/"
},
"repository": {
"type": "git",
"url": "https://github.com/octaform/octaform-additional.git"
},
"bugs": {
"url": "https://github.com/octaform/octaform-additional/issues"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.0.6",
"circular-dependency-plugin": "^4.4.0",
"copy-webpack-plugin": "^4.5.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"generate-json-webpack-plugin": "^0.3.0",
"glob": "^7.1.2",
"jest": "^22.4.3",
"jsdom": "^11.7.0",
"rimraf": "^2.6.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.1.2"
}
}