This repository was archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·56 lines (56 loc) · 1.39 KB
/
package.json
File metadata and controls
executable file
·56 lines (56 loc) · 1.39 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
{
"name": "@justeat/f-validate",
"description": "Fozzie vanilla JS Validation Component",
"version": "1.5.0",
"main": "dist/index.js",
"files": [
"dist"
],
"homepage": "https://github.com/justeat/f-validate",
"contributors": [
"Github contributors <https://github.com/justeat/f-validate/graphs/contributors>"
],
"repository": {
"type": "git",
"url": "git@github.com:justeat/f-validate.git"
},
"bugs": {
"url": "https://github.com/justeat/f-validate/issues"
},
"license": "Apache-2.0",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@justeat/f-dom": "1.1.0"
},
"devDependencies": {
"@justeat/gulp-build-fozzie": "8.4.0",
"concurrently": "4.1.0",
"coveralls": "3.0.3",
"danger": "7.1.4",
"gulp": "3.9.1",
"js-test-buddy": "0.2.0"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0",
"espree": "3.5.4"
},
"keywords": [
"fozzie"
],
"scripts": {
"prepare": "concurrently -n \"lint,compile,test\" -c \"blue,yellow,green\" --kill-others-on-fail \"yarn lint\" \"yarn compile\" \"yarn run test\"",
"lint": "gulp scripts:lint",
"compile": "babel -d dist src",
"test": "gulp scripts:test:coverage",
"test:watch": "jest --coverage --watch",
"test:ci": "cat coverage/lcov.info | coveralls"
},
"browserslist": [
"> 5%",
"last 2 versions",
"Safari >= 8",
"not ie 10"
]
}