-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.19 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
{
"name": "validate-core",
"version": "2.0.0",
"description": "Data validation library",
"main": "lib/validate-core.min.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"prepublishOnly": "npm test && npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "Eduardo Ludi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/adventistchurch/validate-core.git"
},
"homepage": "https://github.com/adventistchurch/validate-core",
"bugs": {
"url": "https://github.com/adventistchurch/validate-core/issues"
},
"keywords": [
"es6",
"validate",
"validator",
"validation"
],
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-babel": "^5.2.1",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"eslint": "^7.10.0",
"jest": "^26.4.2",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.28.2",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-terser": "^7.0.2"
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"useTabs": false
}
}