-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "laravel-form-errors",
"version": "1.2.0",
"description": "Form errors helper for laravel validation errors",
"author": "ARCANEDEV",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ARCANESCRIPTS/FormErrors.git"
},
"bugs": {
"url": "https://github.com/ARCANESCRIPTS/FormErrors/issues"
},
"homepage": "https://github.com/ARCANESCRIPTS/FormErrors#readme",
"main": "dist/FormErrors.js",
"scripts": {
"build": "node_modules/.bin/rollup -c",
"prepublish": "npm run build",
"test": "jest",
"test-cc": "jest --config ./jest.config.json",
"watch": "node_modules/.bin/rollup -c -w"
},
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-jest": "^19.0.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-2": "^6.5.0",
"codacy-coverage": "^2.0.2",
"jest": "^19.0.2",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-typescript": "^0.7.7",
"rollup-watch": "^3.2.2",
"typings": "^2.1.1"
}
}