-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.28 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
{
"name": "is-okay",
"version": "1.1.1",
"description": "Simple and fast type validator",
"main": "main.js",
"scripts": {
"test": "npm run test:lint && npm run test:coverage && npm run test:coverage:threshold",
"test:coverage": "istanbul cover _mocha -- ./test",
"test:coverage:threshold": "istanbul check --branches 80 --functions 80 --statements 80 --lines 80 ./coverage/coverage.json",
"test:unit": "mocha --opts ./mocha.opts ./test",
"test:lint": "eslint --ext .js src *.js test",
"doc": "node ./bin/makeApiDoc.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/davidmenger/is-okay.git"
},
"keywords": [
"validator",
"object",
"api"
],
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-mocha": "^0.7.2",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsdoc": "^8.1.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-react": "^7.13.0",
"jsdoc-to-markdown": "^5.0.0",
"mocha": "^6.1.4",
"mocha-istanbul": "^0.3.0"
},
"author": "David Menger",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidmenger/is-okay/issues"
},
"homepage": "https://github.com/davidmenger/is-okay#readme"
}