UNPKG

1.4 kBJSONView Raw
1{
2 "name": "the-owl",
3 "version": "1.1.2",
4 "description": "Generate api docs based on functional tests",
5 "main": "./src/the-owl.js",
6 "scripts": {
7 "test": "ava --verbose",
8 "test:coverage": "nyc npm test",
9 "test:log-messages": "LOG_MESSAGES=true npm run test",
10 "test:log-redux": "LOG_REDUX=true npm run test"
11 },
12 "repository": {
13 "type": "git",
14 "url": "git+https://github.com/leonardosarmentocastro/the-owl.git"
15 },
16 "author": {
17 "name": "Leonardo Sarmento de Castro",
18 "email": "leonardo.sarmentocastro@gmail.com",
19 "url": "http://leonardosarmentocastro.com"
20 },
21 "license": "ISC",
22 "bugs": {
23 "url": "https://github.com/leonardosarmentocastro/the-owl/issues"
24 },
25 "homepage": "https://github.com/leonardosarmentocastro/the-owl#readme",
26 "keywords": [
27 "create",
28 "docs",
29 "doc",
30 "documentation",
31 "functional",
32 "tests",
33 "test",
34 "ava",
35 "api",
36 "express"
37 ],
38 "devDependencies": {
39 "ava": "^1.4.1",
40 "nyc": "^14.1.0"
41 },
42 "dependencies": {
43 "chalk": "^2.4.2",
44 "redux": "^4.0.1",
45 "rev-hash": "^3.0.0",
46 "rimraf": "^2.6.3"
47 },
48 "ava": {
49 "files": [
50 "test.js ",
51 "test-*.js ",
52 "test/**/*.js ",
53 "**/__tests__/**/*.js ",
54 "**/*.test.js",
55 "!examples/**/*.js"
56 ]
57 },
58 "nyc": {
59 "reporter": [
60 "html",
61 "lcov",
62 "text"
63 ]
64 }
65}