forked from psvet/obey
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.7 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.7 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "obey",
"version": "1.6.1",
"description": "Data modelling and validation library",
"main": "index.js",
"files": [
"build",
"index.js"
],
"scripts": {
"clean": "rm -rf node_modules",
"doc": "jsdoc2md \"src/**/*.js\" > API.md",
"build": "babel ./src --out-dir ./build",
"test": "snyk test && npm run lint && npm run cover && npm run doc",
"mocha": "babel-node node_modules/.bin/_mocha",
"cover": "babel-node node_modules/.bin/babel-istanbul cover node_modules/mocha/bin/_mocha",
"lint": "eslint ./src ./test --fix",
"prepublish": "rm -rf ./build && npm run cover && npm run build",
"ci": "npm run lint && npm run cover"
},
"keywords": [
"obey",
"valid",
"validate",
"validation",
"model",
"modelling"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/TechnologyAdvice/obey.git"
},
"author": "TechnologyAdvice",
"license": "MIT",
"bugs": {
"url": "https://github.com/TechnologyAdvice/obey/issues"
},
"homepage": "https://github.com/TechnologyAdvice/obey#readme",
"devDependencies": {
"babel-cli": "~6.1.4",
"babel-core": "~6.1.4",
"babel-eslint": "~4.1.7",
"babel-istanbul": "^0.11.0",
"babel-preset-es2015": "^6.5.0",
"chai": "~3.0.0",
"chai-as-promised": "^5.2.0",
"eslint": "~2.1.0",
"istanbul": "^0.4.5",
"jsdoc-to-markdown": "^1.3.3",
"mocha": "~2.2.5",
"pre-commit": "~1.1.1",
"sinon": "~1.15.4",
"sinon-chai": "~2.8.0",
"snyk": "^1.11.1"
},
"dependencies": {
"bluebird": "^3.3.4",
"dot-object": "^1.5.4",
"lodash": "^4.6.1"
},
"pre-commit": [
"test"
],
"babel": {
"presets": [
"es2015"
]
}
}