-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.35 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
{
"name": "@groceristar/json-file-schema-validator",
"version": "0.0.8",
"license": "MIT",
"scripts": {
"bundle": "rollup -c",
"dev": "rollup -c -w",
"build": "npm run clean && yarn lint && npm run bundle",
"build:babel": "yarn clean && yarn lint && babel src -d dist",
"#prepare": "yarn clean",
"clean": "shx rm -rf ./coverage && shx rm -rf ./dist",
"prepublish": "yarn clean && yarn lint && yarn build",
"test": "CI=test && jest",
"test:watch": "jest --watch",
"test:cover": "jest --coverage",
"format": "prettier ./src/** --write",
"formato": "pretty-quick --staged",
"lint": "eslint ./src --fix --ignore-pattern \"./package.json\" "
},
"description": "this module will have set of default tests for JSON files that we have",
"main": "dist/index.cjs",
"module": "dist/index.es.js",
"browser": "dist/index.iife.js",
"repository": "https://github.com/GroceriStar/json-file-schema-validator",
"author": "Arthur Tkachenko",
"private": false,
"release": {
"publishDir": "dist"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.8",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.16.11",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "27.1.1",
"babel-plugin-module-resolver": "4.1.0",
"coveralls": "3.1.1",
"eslint": "8.12.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.1.3",
"husky": "7.0.4",
"jest": "27.1.1",
"jsonlint": "1.6.3",
"lint-staged": "12.3.7",
"prettier": "2.4.0",
"pretty-quick": "3.1.3",
"regenerator-runtime": "0.13.9",
"rollup": "2.70.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-copy-assets": "2.0.3",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-notify": "1.1.0",
"rollup-plugin-replace": "2.2.0",
"shx": "0.3.4"
},
"peerDependencies": {},
"publishConfig": {
"access": "public"
},
"dependencies": {
"jest-json-schema": "5.0.0",
"lodash": "^4.17.11",
"path": "^0.12.7",
"shelljs": "0.8.5"
},
"files": [
"dist"
]
}