-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
68 lines (68 loc) · 1.71 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
{
"name": "volder",
"version": "2.0.3",
"description": "schema builder and validating",
"main": "dist/index.cjs.js",
"files": [
"dist",
"lib",
"README.md",
"LICENCE",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "rollup --watch --config rollup.config.js",
"dev": "nodemon playing.js",
"build": "rollup --config rollup.config.js",
"test": "jest test --coverage",
"test:ci": "jest test --ci --coverage",
"pretty": "pretty-quick --check --ignore-path .gitignore --verbose",
"lint": "eslint src *.js && npm run pretty",
"format": "eslint src --fix && pretty-quick",
"prepare": "npm run build && husky install"
},
"jest": {
"testPathIgnorePatterns": [
"src"
]
},
"homepage": "https://github.com/devSupporters/volder",
"repository": {
"type": "git",
"url": "git+https://github.com/devSupporters/volder.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"schema-builder",
"validator",
"validation",
"parser"
],
"author": "salah alhashmi",
"license": " GPL-3.0",
"bugs": {
"url": "https://github.com/devSupporters/volder/issues"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@babel/preset-env": "^7.15.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"babel-jest": "^27.2.5",
"eslint": "^8.0.0",
"husky": "^7.0.2",
"jest": "^27.2.5",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"rollup": "^2.58.0",
"rollup-plugin-terser": "^7.0.2"
}
}