-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
49 lines (49 loc) · 1.52 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
{
"name": "Validator",
"version": "1.1.4",
"description": "A JavaScript validation package, based on Laravel validation.",
"main": "dist/Validator.js",
"scripts": {
"test": "nyc --check-coverage --lines 85 mocha --require @babel/register",
"coverage": "npm run test && nyc report --reporter=text-lcov | coveralls",
"test:watch": "nodemon --exec npm run test",
"prebuild": "rimraf dist",
"build": "rollup -c",
"watch": "rollup -c -w",
"prepublishOnly": "npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jfstn/Validator.git"
},
"keywords": [
"javascript",
"validator",
"laravel"
],
"author": "Rati Wannapanop <[email protected]>",
"contributors": [
{
"name": "João Faustino",
"email": "[email protected]"
}
],
"license": "MIT",
"homepage": "https://github.com/jfstn/Validator#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.27.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-uglify": "^6.0.4"
}
}