-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.01 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.01 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
{
"name": "validari",
"description": "Light validation library with symfony compatible constraints",
"license": "MIT",
"author": "Darijusch Behbahani <dari@gosus.com>",
"version": "0.1.0",
"scripts": {
"build": "webpack",
"watch": "webpack --config webpack.dev.config.js --watch",
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"clean-webpack-plugin": "^1.0.0",
"coveralls": "^3.0.2",
"eslint": "^5.12.1",
"eslint-config-import": "^0.13.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^23.6.0",
"prettier": "^1.16.1",
"regenerator-runtime": "^0.13.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {}
}