-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 2.07 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": "valirator",
"version": "2.2.0",
"description": "Powerful javascript by schema validation tool",
"main": "dist/valirator.js",
"module": "dist/valirator.esm.js",
"browser": "dist/valirator.umd.js",
"contributors": [
"Alexandr Dascal <[email protected]>",
"Slava Matvienco <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/massive-angular/valirator.git"
},
"keywords": [
"validator",
"validation",
"js validation",
"form validation",
"schema validation",
"json schema validation",
"angular validation",
"react validation",
"javascript validation",
"massive",
"massive-angular",
"massive angular"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/massive-angular/valirator/issues"
},
"homepage": "https://github.com/massive-angular/valirator#readme",
"scripts": {
"lint": "eslint lib",
"test": "karma start",
"build": "rollup --config rollup.config.js",
"start": "concurrently 'npm run build -- -w' 'npm run test'",
"docs": "documentation build lib/ -f html -c documentation.yml -o docs",
"prepublish": "npm run lint && rm -rf dist && npm run build && npm run test -- --single-run"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/polyfill": "7.4.4",
"@babel/preset-env": "7.5.5",
"@babel/register": "7.5.5",
"acorn": "7.0.0",
"acorn-jsx": "5.0.2",
"babel-eslint": "10.0.3",
"concurrently": "4.1.2",
"documentation": "12.1.1",
"eslint": "6.3.0",
"eslint-plugin-import": "2.18.2",
"jasmine": "3.4.0",
"jsdoc": "3.6.3",
"jsdoc-babel": "0.5.0",
"karma": "4.3.0",
"karma-chrome-launcher": "3.1.0",
"karma-firefox-launcher": "1.2.0",
"karma-jasmine": "2.0.1",
"karma-phantomjs-launcher": "1.0.4",
"karma-rollup-preprocessor": "7.0.2",
"phantomjs": "2.1.7",
"rollup": "1.20.3",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-watch": "4.3.1"
}
}