-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.58 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.58 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "lc-form-validation",
"version": "2.0.0",
"description": "lcFormValidation is an async form validation library heavily based on JavaScript (no HTML attributes or annotations). lcFormValidation is third party / framework agnostic so it can be easily integrated with frameworks like React.",
"main": "dist/lc-form-validation.js",
"scripts": {
"test": "karma start --browsers PhantomJS --single-run",
"test:watch": "karma start",
"clean": "rimraf dist ReadmeResources",
"build:prod": "webpack -p --output-filename dist/lc-form-validation.min.js",
"build:dev": "webpack --output-filename dist/lc-form-validation.js",
"build": "npm run clean && npm run build:dev && npm run build:prod",
"prepublish": "npm run build"
},
"files": [
"dist",
"src",
"lc-form-validation.d.ts",
"package.json",
"README.md",
"ReadmeResources"
],
"repository": {
"type": "git",
"url": "https://github.com/Lemoncode/lcFormValidation"
},
"author": "Braulio Díez Botella",
"license": "MIT",
"homepage": "https://github.com/Lemoncode/lcFormValidation/blob/master/README.md",
"devDependencies": {
"@types/chai": "3.4.35",
"@types/chai-as-promised": "0.0.30",
"@types/karma-chai-sinon": "0.1.5",
"@types/mocha": "2.2.40",
"@types/sinon": "1.16.35",
"awesome-typescript-loader": "3.1.2",
"babel-core": "6.24.0",
"babel-preset-env": "1.2.2",
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"copy-webpack-plugin": "4.0.1",
"json-loader": "0.5.4",
"karma": "1.5.0",
"karma-chai": "0.1.0",
"karma-chai-as-promised": "0.1.2",
"karma-chrome-launcher": "2.0.0",
"karma-mocha": "1.3.0",
"karma-phantomjs-launcher": "1.0.4",
"karma-sinon": "1.0.5",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.3",
"mocha": "3.2.0",
"phantomjs-prebuilt": "2.1.14",
"rimraf": "2.6.1",
"sinon": "1.17.6",
"typescript": "2.2.1",
"webpack": "2.2.1"
},
"types": "./lc-form-validation.d.ts",
"keywords": [
"validation",
"form validation",
"react validation",
"validator",
"lc-form-validation"
],
"contributors": [
{
"name": "Braulio Díez",
"email": "braulio.diez@lemoncode.net"
},
{
"name": "Daniel Sánchez",
"email": "daniel.sanchez@lemoncode.net"
},
{
"name": "Jaime Salas",
"email": "jaime.salas@lemoncode.net"
},
{
"name": "Santiago Camargo Rodríguez",
"email": "santi.camargo@lemoncode.net"
}
],
"dependencies": {
"es6-promise": "4.1.0",
"lodash.get": "^4.4.2"
}
}