-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "satpam",
"version": "4.15.1",
"description": "Simple and Effective Object Validator",
"main": "lib/index.js",
"scripts": {
"compile": "rm -rf ./lib && babel -d lib/ src/",
"prepare": "npm run compile",
"test": "npm run compile && mocha test --recursive --require @babel/register",
"test-individual": "npm run compile && mocha --require @babel/register"
},
"repository": "cermati/satpam",
"keywords": [
"validator",
"satpam",
"object validator"
],
"author": "Sendy Halim <sendyhalim93@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cermati/satpam/issues"
},
"homepage": "https://github.com/cermati/satpam",
"dependencies": {
"file-type": "~3.8.0",
"image-type": "~4.1.0",
"lodash": "~4.17.21",
"moment": "~2.29.4",
"noes": "~1.1.1",
"ramda": "~0.25.0",
"read-chunk": "~1.0.1"
},
"devDependencies": {
"@babel/cli": "~7.14.8",
"@babel/core": "~7.14.8",
"@babel/preset-env": "~7.14.8",
"@babel/register": "~7.14.5",
"babel-eslint": "~6.0.2",
"chai": "~2.3.0",
"eslint": "~7.31.0",
"mocha": "~9.2.2"
}
}