-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "obey",
"version": "5.0.1",
"description": "Data modelling and validation library",
"main": "src/index.js",
"scripts": {
"clean": "rm -rf node_modules",
"test": "snyk test && npm run lint && npm run jest",
"jest": "NODE_PATH=./ RESOURCES_PATH=./src jest --coverage --forceExit --runInBand --colors",
"jest:watch": "NODE_PATH=./ RESOURCES_PATH=./src jest --watchAll --runInBand --colors",
"lint": "standard ./src ./test --fix",
"ci": "npm run lint && npm run jest"
},
"keywords": [
"obey",
"valid",
"validate",
"validation",
"model",
"modelling"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/psvet/obey.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/psvet/obey/issues"
},
"homepage": "https://github.com/psvet/obey#readme",
"devDependencies": {
"jest": "^26.4.2",
"snyk": "^1.387.0",
"standard": "^12.0.1"
},
"dependencies": {
"bluebird": "^3.5.3",
"dot-object": "^2.1.3",
"jexl": "^2.1.1",
"lodash": "^4.17.20"
}
}